
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* 16 - 14- */
:root{
 --federal-blue: #03045eff;
 --honolulu-blue: #0077b6ff;
 --pacific-cyan: #00b4d8ff;
 --non-photo-blue: #90e0efff;
 --light-cyan: #caf0f8ff;
 --white: #ffffff

}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", serif;
}
body{
  margin: 0;
  padding: 0;
  background-color: var(--white) ;
  
  height: 100vh;
  overflow: hidden; 
}

.center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  
  border-radius: 10px;
  border: 1px solid #adadad;
  
}
.center h3{
  text-align: center;
  padding: 20px 0;
  color: var(--federal-blue);
  
}
.center form{
  padding: 0 40px;
  box-sizing: border-box;
}
form .txt_field{
  position: relative;
  border-bottom: 1px solid #adadad;
  margin: 30px 0;
}
.txt_field input{
  width: 100%;
  padding: 0 5px;
  height: 40px;
  font-size: 14px;
  border: none;
  background: none;
  outline: none;
}
.txt_field label{
  position: absolute;
  top: 50%;
  left: 5px;
  color: #adadad;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
  transition: .5s;
}
.txt_field span::before{
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--federal-blue);
  transition: .5s;
}
.txt_field input:focus ~ label,
.txt_field input:valid ~ label{
  top: -5px;
  color: var(--federal-blue);
}
.txt_field input:focus ~ span::before,
.txt_field input:valid ~ span::before{
  width: 100%;
}
.pass{
  margin: -5px 0 20px 5px;
  color: #a6a6a6;
  cursor: pointer;
}
.pass:hover{
  text-decoration: underline;
}
input[type="submit"]{
  width: 100%;
  height: 50px;
  border: 1px solid;
  background: var(--federal-blue);
  border-radius: 8px;
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
input[type="submit"]:hover{
  
  transition: .5s;
}
.signup_link{
  margin: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #666666;
}
.signup_link a{
  color: var(--federal-blue);
  text-decoration: none;
}
.signup_link a:hover{
  text-decoration: underline;
}