@import url('https://fonts.googleapis.com/css2?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');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
  color: #fff;
}
body{
  background:url(../images/larena.webp) no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container{
  height: 550px;
  width: 450px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 10px;
  background: rgba(0, 0, 0, .2);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 5px rgba(0,0,0,.2),
  0 0 15px rgba(0,0,0,.2) ,
  0 0 30px rgba(0,0,0,.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container .form-box h2{
  text-align: center;
  font-size: 38px;
  font-weight: 600;
}

.form-box .input-box{
  margin: 35px 0;
  width: 330px;
  border-bottom: 2px solid rgba(255,255,255,.4);
  position: relative;
}

.form-box .input-box input{
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  height: 40px;
  padding: 0 35px 0 5px;
}

.form-box .input-box label{
  font-weight: 400;
  letter-spacing: .5px;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: .5s ease;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}
.input-box i{
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
}
.forgot-section{
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: -15px 0 15px;
}
.forgot-section p{
  display: flex;
  align-items: center;
}
.forgot-section p input{
 accent-color: #11595d;
 margin: 0 3px;
}
.forgot-section a{
  text-decoration: none;
}
.btn{
  height: 45px;
  width: 100%;
  border-radius: 50px;
  color: #fff;
  background: #036889;
  border: 2px solid #07527e;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  list-style: 1px;
}
.account-creation{
  text-align: center;
  margin: 25px 0 10px;
  font-weight: 400;
  font-size: 14px;
}
.account-creation span a{
  text-decoration: none;
}
.account-creation a:hover{
  text-decoration: underline;
}



/*responsive*/
@media (max-width: 768px) {
  .container{
    height: 500px;
    width: 380px;
  }
  .container .form-box h2{
    font-size: 32px;
  }
  .form-box .input-box{
    margin: 35px 0;
    width: 300px;
  }
  .form-box .input-box i{
    font-size: 18px;
  }
  .form-box .input-box label{
   font-size: 14px;
  }
  .forgot-section{
    font-size: 13px;
  }
  .btn{
    height: 40px;
    width: 100%;
    font-size: 14px;
  }
  .account-creation{
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container{
    height: 450px;
    width: 310px;
  }
  .container .form-box h2{
    font-size: 26px;
  }
  .form-box .input-box{
    margin: 30px 0;
    width: 260px;
  }
  .form-box .input-box i{
    font-size: 16px;
  }
  .form-box .input-box label{
   font-size: 12px;
  }
  .forgot-section{
    font-size: 11px;
  }
  .forgot-section p input{
    font-size: 11px;
   }
  .btn{
    height: 35px;
    width: 100%;
    font-size: 12px;
  }
  .account-creation{
    font-size: 11px;
  }
}

@media (max-width: 365px) {
  .container{
    height: 420px;
    width: 280px;
  }
  .container .form-box h2{
    font-size: 24px;
  }
  .form-box .input-box{
    margin: 25px 0;
    width: 220px;
  }
  .form-box .input-box i{
    font-size: 13px;
  }
  .form-box .input-box label{
   font-size: 10px;
  }
  .forgot-section{
    font-size: 10px;
  }
  .forgot-section p input{
    font-size: 8px;
   }
  .btn{
    height: 30px;
    width: 100%;
    font-size: 11px;
  }
  .account-creation{
    font-size: 10px;
  }
}