

.center {
  margin: 50px 0px 50px 0px;
  max-width: 500px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 41px 5px #5d721a78;
  -moz-box-shadow: 0px 0px 41px 5px #5d721a78;
  box-shadow: 0px 0px 41px 5px #5d721a78;

}
.center h2 {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid silver;
}
.center form {
  padding: 0 40px;
  box-sizing: border-box;
}
form .txt_field {
  position: relative;
  border-bottom: 2px solid #adadad;
  margin: 30px 0;
}
.txt_field input {
  width: 100%;
  padding: 0 5px;
  height: 40px;
  font-size: 16px;
  border: none;
  background: none;
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
input:-webkit-autofill ~ label,
input:-webkit-autofill:hover ~ label, 
input:-webkit-autofill:focus ~ label, 
input:-webkit-autofill:active ~ label{
    top: -5px;
    color: #5d721a;
}
input:-webkit-autofill ~ span::before,
input:-webkit-autofill:hover ~ span::before, 
input:-webkit-autofill:focus ~ span::before, 
input:-webkit-autofill:active ~ span::before{
    width: 100%;
}

.txt_field label {
  position: absolute;
  top: 50%;
  left: 5px;
  color: #adadad;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: 0.5s;
}
.txt_field span::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #5d721a;
  transition: 0.5s;
}
.txt_field input:focus ~ label,
.txt_field input:valid ~ label,
.txt_field input:disabled ~ label{
  top: -5px;
  color: #5d721a;
}
.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before,
.txt_field input:disabled ~ span::before{
  width: 100%;
}

.pass {
  margin: -5px 0 20px 5px;
  color: #a6a6a6;
  cursor: pointer;
}
.pass:hover {
  text-decoration: underline;
}
@keyframes slideInFromDown {
  0% {
    height: 0px;
    transform: translateY(-100%);
  }
  100% {
    height: 40px;
    transform: translateY(0);
  }
}

#pass_div {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 0.5s ease-out 0s 1 slideInFromDown;
  
}
#next-btn{
  background-color: white!important;
	color: #5d721a!important;
}
#next-btn:hover{
  background-color: #b3cc23!important;
	color: white!important;
}
#next-btn:focus{
  outline: none!important;
}
#next-btn:active{
  background-color: #5d721a!important;
  color: #b3cc23!important;
  border-color: #5d721a!important;
}
.signup_link, #resend_timer {
  margin: 30px 0px 0px 0px;
  text-align: center;
  font-size: 16px;
  color: #666666;
}
.signup_link b {
  color: #b3cc23!important;
  transition: all ease 0.5s!important;
}
#resend_timer b {
  color: #b3cc23!important;
}
.signup_link b:hover {
  color: #5d721a!important;
  text-decoration: underline;
}
