*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }

  
  /* Ensure the body still applies flex-start alignment */
  body {
    display: flex;
    justify-content: flex-start; /* Changed from center to flex-start */
    align-items: center;
    min-height: 100vh; /* This ensures the body is at least the height of the viewport */
    background: url(background2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding-left: 10%;
  }
  .wrapper{
    max-height: 80vh; /* Ensure max height is 80% of the viewport height */
    overflow-y: auto; /* Enable scrolling within the wrapper if the content exceeds its height */
    width: 450px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(9px);
    color: #fff;
    border-radius: 12px;
    padding: 20px 30px;
  }
  .wrapper h1{
    font-size: 36px;
    text-align: center;
  }
  .wrapper .input-box{
    position: relative;
    width: 100%;
    height: 50px;
    
    margin: 20px 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: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
  }
  .input-box input::placeholder{
    color: #fff;
  }
  .input-box i{
    position: absolute;
    right: 20px;
    top: 30%;
    transform: translate(-50%);
    font-size: 20px;
  
  }
  .wrapper .remember-forgot{
    text-align: center;
 
    font-size: 14.5px;
    margin: -10px 0 10px;
  }
  .remember-forgot label input{
    accent-color: #fff;
    margin-right: 3px;
  
  }
  .remember-forgot a{
    color: #fff;
    text-decoration: none;
  
  }
  .remember-forgot a:hover{
    text-decoration: underline;
  }
  .wrapper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
  }
  .wrapper .register-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
  
  }
  .register-link p a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .register-link p a:hover{
    text-decoration: underline;
  }  
  .wrapper .login-link{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
  
  }
  .login-link p a{
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .login-link p a:hover{
    text-decoration: underline;
  }

  .header {
    display: flex; /* Use flexbox for positioning */
    align-items: center; /* Align logos vertically */
    justify-content: flex-start; /* Align items to the left */
    padding: 10px;
    background: white;
    backdrop-filter: blur(5px);
    color: #fff;
  
    width: 100%;
    position: fixed; /* Fixed position at the top */
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
  }
  
  .left-logo, .center-logo {
    max-height: 30px; /* Adjust the height as needed */
    height: auto; /* Keep the aspect ratio */
    margin-right: 20px; /* Adjust space between logos as needed */
  }
  .wrapper .action{
    font-size: 14.5px;
    text-align: center;
    margin: 20px 0 15px;
  
  }
  .wrapper .action2{
    font-size: 14.5px;
    text-align: left;
    margin: 20px 0 15px;
  
  }
  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  border-radius: 5px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.wrapper .form-buttons {
  display: flex; /* Use Flexbox to align children */
  justify-content: space-between; /* Space out buttons */
  gap: 10px; /* Optional: space between buttons */
}

/* Style individual buttons (if needed to override) */
.wrapper .form-buttons .btn {
  flex: 1; /* Each button will take up equal space */
  /* Any other specific styling you want for the buttons */
}

/* If buttons are too wide, adjust padding or font size as needed */
.wrapper .btn {
  padding: 10px 15px; /* Adjust padding to reduce button width */
  font-size: 14px; /* Adjust font size if necessary */
}