* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
}

.contain {
/*   display: flex;
  height: 100vh; */

  padding-top: 106px;
}

.password-show{

  position: relative;
}

.toggle {
  background: none;
  border: none;
  color: #ee923e;;
  /* display: none; */
  /* font-size: .9em; */
  font-weight: 600;
  /* padding: .5em; */
  position: absolute;
  right: .75em;
  top: 2.25em;
  z-index: 9;
  outline: none !important;
}

.login-password {

  position: relative;
}

.content-form {

  background-color: white;
  overflow: hidden;
  display: flex;
  width: 421px;
  border-radius: 12px;
  padding-bottom: 27px;
  margin: auto;
   padding-top: 25px;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  animation-name: scale-up-center;
  -webkit-animation-name: scale-up-center;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  margin-top: -50px;
}




.header > h2 {
  margin: 0;
  color: #3c6aff;
  text-align: center;
}

.header > p {
  margin-top: 10px;
  font-weight: normal;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.5;
  text-align: justify;
}

.form {
  width: 80%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
}

.form > p {
  text-align: right;
}

.form > p > a {
  color: #000;
  font-size: 14px;
}

.form-field {
  height: 46px;
  padding: 0 16px;
  border: none;
  border-bottom: 2px solid #d2e2ff;
  background: linear-gradient(180deg, white, #f8faff);
  border-radius: 4px;
  font-family: sans-serif;
  outline: 0;
  transition: .2s;
  margin-top: 20px;
}

.form-field:focus {
  border-color: #0f7ef1;
}

.form > .button {
  padding: 12px 10px;
  border: 0;
  background: #ee923e;
  border-radius: 3px;
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
  font-family: sans-serif;
  text-decoration: none;
}

.animation {
-webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.a1 {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.a2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.a3 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.a4 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.a5 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.a6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 500px;
  }
}
@keyframes left {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    padding: 20px 40px;
    width: 500px;
  }
}


/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
 @-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

