 @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&displayswap");

 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
 }

 header {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   padding:20px 100px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   z-index: 99;
 }
 
 .logo{
   font-size: 2em;
   color: white;
   user-select: none;
 }

 .navigation a{
   position: relative;
   font-size: 1.1em;
   color: white;
   text-decoration: none;
   font-weight: 500;
   margin-left: 40px;
 }

 .navigation a::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 100%;
   height: 3px;
   background: white;
   border-radius: 5px;
   transform: scaleX(0);
   transform-origin: right;
   transition: transform .5s;

 }

 .navigation a:hover::after {
   transform-origin: left;
   transform: scaleX(1);
 }

 .navigation .btnlogin-popup{
   width: 130px;
   height: 50px;
   background: transparent;
   border: 2px solid white;
   outline: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 500;
   margin-left: 40px;
   transition: .5s;
   color: white;
 }

 .navigation .btnlogin-popup:hover {
   background: white;
   color: black;
 }

  .navigation .btnregister-popup{
   width: 130px;
   height: 50px;
   background: transparent;
   border: 2px solid white;
   outline: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 500;
   margin-left: 40px;
   transition: .5s;
   color: white;
 }

 .navigation .btnregister-popup:hover {
   background: white;
   color: black;
 }

 body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('img.jpg?v=123') no-repeat;
    background-size: cover;
 }
 
 .wrapper {
    width: 420px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
    color: azure;
    border-radius: 20px;
    padding: 30px 40px;
 }

 .wrapper .icon-close{
   position: absolute;
   top: 0;
   right: 0;
   width: 45px;
   height: 45px;
   background: transparent ;
   font-size: 2em;
   color: white;
   display: flex;
   justify-content: center;
   align-items: center;
   cursor: pointer;
   z-index: 1;

 }

 .wrapper h1{
    font-size: 36px;
    text-align: center;
 }

 .wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
 }

 

 .input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 14px;
    color: white;
    padding: 20px 45px 20px 20px;
 }

 .input-box input::placeholder{
    color: white;
 }

 .input-box i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
 }

 .wrapper .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
 }

 .remember-forgot label input{
    accent-color: white;
    margin-right: 3px;

 }

 .remember-forgot a {
    color: white;
    text-decoration: none;
 }

 .remember-forgot a:hover{
    text-decoration: underline;
 }

 .wrapper .btn-login {
    width: 100%;
    height: 45px;
    background: white;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor:pointer;
    font-size: 16px;
    color: rgb(48, 46, 46);
    font-weight: 600;
 }

 .wrapper .register-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
 }

 .register-link p a {
    color: white;
    text-decoration: none;
    font-weight: 600;
 }

 .register-link p a:hover{
    text-decoration: underline;
 }



.wrapper2 {
   width: 420px;
   height: 550px;
   background: transparent;
   border: 2px solid rgba(255, 255, 255, .2);
   backdrop-filter: blur(20px);
   color: azure;
   border-radius: 20px;
   padding: 30px 40px;
   margin-left: 10px;
   margin-right: 10px;
   margin-top: 50px;
}

.wrapper2 .icon-close{
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  background: transparent ;
  font-size: 2em;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;

}

.wrapper2 h1{
   text-align: center;
   font-family: 'Outfit', sans-serif;
   font-size: 36px; /* Adjust the font size as needed */
   font-weight: 500;
}

.wrapper2 .input-box {
   position: relative;
   width: 100%;
   height: 50px;
   margin: 20px 0;
   
}

.wrapper2 .remember-forgot {
   display: flex;
   justify-content: space-between;
   font-size: 14.5px;
   margin: -15px 0 15px;
}

.wrapper2 .btn-login {
   width: 100%;
   height: 45px;
   background: white;
   border: none;
   outline: none;
   border-radius: 40px;
   cursor:pointer;
   font-size: 16px;
   color: rgb(48, 46, 46);
   font-weight: 600;
}

.wrapper2 .register-link{
   font-size: 14.5px;
   text-align: center;
   margin: 20px 0 15px;
}