    /* Styles are the same as before */
    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }
    body{
      display: flex;
      justify-content: left;
      align-items: center;
      min-height: 100vh;
      background: url(../assets/bg.jpg) no-repeat;
      background-size: cover;
      background-position: center;
      padding-left: 50px;
      padding-right: 50px;
    }
    .wrapper{
      width: 600px;
      background: transparent; 
      color: #fff;
      padding: 30px 40px;
    }
    .wrapper h1{
      font-size: 36px;
      text-align: left;
    }
    .wrapper .input-box{
      position: relative;
      width: 100%;
      height: 50px;
      margin: 30px 0;
    }
    .input-box input{
      width: 100%;
      height: 100%;
      background: black;
      border: none;
      outline: none;
      border: 2px solid rgba(255, 255, 255, .2);
      border-radius: 10px;
      font-size: 16px;
      color: #fff;
      padding: 20px 45px 20px 20px;
    }
    .input-box input::placeholder{
      color: #bebebe;
      font-size: 16px;
    }

    .input-box select{
      padding: 15px;
      width: 100%;
      height: 100%;
      background: black;
      border: none;
      outline: none;
      border: 2px solid rgba(255, 255, 255, .2);
      border-radius: 10px;
      font-size: 16px;
      color: #fff;
     
    }
    .input-box select::placeholder{
      color: #bebebe;
      font-size: 12px;
    }
    .input-box i{
      position: absolute;
      right: 20px;
      top: 30%;
      transform: translate(-50%);
      font-size: 20px;
      color:#bebebe;
    }

    
    .wrapper .remember-forgot{
      padding-top: 20px;
      padding-bottom: 40px;
      font-size: 14.5px;
      text-align: center;
    }
    .remember-forgot a{
      color: #2EA9E5;
      text-decoration: none;
    }
    .remember-forgot a:hover{
      text-decoration: underline;
    }
    .wrapper .register-link{
      font-size: 14.5px;
      text-align: center;
      margin: 20px 0 15px;
    }
    .register-link p a{
      color: #2EA9E5;
      text-decoration: none;
      font-size: 14.5px;
    }
    .register-link p a:hover{
      text-decoration: underline;
    }
    .login-btn, .register-btn {
      width: 100%;
      height: 45px;
      background: #2EA9E5;
      border: none;
      outline: none;
      border-radius: 40px;
      box-shadow: 0 0 10px rgba(0, 0, 0, .1);
      cursor: pointer;
      font-size: 16px;
      color: #ffffff;
      font-weight: 600;
    }
    .login-btn:hover, .register-btn:hover {
      background-color: #1F7099;
    }
    .icon-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #e0e0e0;
      color: #333;
      padding: 12px;
      border-radius: 40px;
      box-shadow: 0 0 10px rgba(0, 0, 0, .1);
      border: none;
      outline: none;
      cursor: pointer;
      width: 100%;
      height: 45px;
      font-size: 16px;
      font-weight: 600;
    }
    .icon-btn img {
      margin-left: 10px;
    }
    .btn-text {
      flex: 1;
      text-align: center;
    }
    