.aria-form input {
  margin-bottom: 0;
}

.aria-input-wrap {
  width: 100%;
  position: relative;
}

.aria-input-wrap label {
  color: black;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  transform-origin: left top;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1), top 500ms;
  user-select: none;
}

.aria-input:focus + label, .aria-input.is-valid + label {
  transform: translateY(-100%) scale(0.7);
}

.aria-focus:focus {
  border: 100px solid red;
}