@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/**
 * Styles for <form>
 */
.form__box {
  max-width: 300px;
  -webkit-animation: fadeInAnimation ease 3s;
          animation: fadeInAnimation ease 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.form__row {
  position: relative;
  padding-top: 40px;
}

.form__row.has-error > .form__error:after {
  display: block;
}

.form__input {
  width: 100%;
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  color: #ffffdc;
}

.form__input:focus ~ .form__label,
.form__input:active ~ .form__label,
.form__input:valid ~ .form__label {
  bottom: 30px;
  font-size: 0.75rem;
}

.form__input:-webkit-autofill ~ .form__label {
  bottom: 30px;
  font-size: 0.75rem;
}

.form__input:focus, .form__input:active {
  outline: 0;
}

.form__input:-webkit-autofill {
  background: none;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #ffffdc !important;
}

.form__input:focus ~ .form__bar,
.form__input:active ~ .form__bar {
  left: 0;
  right: 0;
  width: 100%;
}

.form__bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  display: block;
  width: 0;
  height: 2px;
  background-color: #ff1552;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form__label {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

.form__submit {
  width: 100%;
  padding: 10px 0;
  margin-top: 30px;
  color: #1f1d19;
  background-color: #ffffdc;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  cursor: pointer;
}

.form__submit:hover {
  background-color: #fffff2;
}

.form__retrieve-pass {
  display: block;
  padding: 15px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form__retrieve-pass:hover {
  color: #ffffdc;
}

.form__error {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 100%;
  height: 20px;
  color: #ff1552;
  font-size: 0.75rem;
  line-height: 20px;
  z-index: 100;
}

.form__error:after {
  content: 'x';
  position: absolute;
  bottom: 20px;
  right: -20px;
  display: none;
  width: 20px;
  height: 25px;
  font-size: 1.125rem;
  line-height: 25px;
  text-align: center;
  color: #ff1552;
  border: 1px solid blue;
}

.form__info {
  text-align: center;
}
/*# sourceMappingURL=user-form.css.map */