
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

html, body {
    max-width: 100%;
    overflow-x: hidden; 
}


body {
    font-family: 'Montserrat', sans-serif; 
    font-size: 14px; 
    margin: 0; 
    padding: 0; 
    background-color: rgba(226, 235, 238, 0.99);
}


.loading-screen {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(226, 235, 238, 0.99);
    z-index: 9998;
    box-sizing: border-box;
}


.navbar {
    list-style-type: none;
    margin: 0 auto; 
    max-width: 100%;
    border-bottom: 2px solid rgba(78, 77, 77, 0.09);
    transform: rotate(-0.19deg);
    display: flex;
    justify-content: space-between; 
    padding: 7px 20px;
    align-items: center;
}

.logo {
    position: relative; 
}

.logo img {
    height: 40px;
}


.menu-items {
    display: flex;
    gap: 0px;
}


.menu-item {
   
    text-decoration: none; 
   
}

.container {
    display: flex;
    height: 95vh;
    align-items: center;
    justify-content: center;
  }
  
  .left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
  }
  
  .left-section img {
    max-width: 75%;
    height: auto;
    margin-left: 10%;
  }
  
  .right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-right: 30px;
  }
  
  .login-section {
    width: 100%;
    max-width: 400px;
    padding: 40px;
  }
  
  .login-section h1 {
    margin-bottom: 2rem;
    font-size: 32px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .form-group input[type="text"],
  .form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    background-color: #fff;
    border-radius: 25px;
    box-sizing: border-box;
  }
  
  
  
  .form-group input[type="checkbox"] {
    margin-right: 10px;
  }
  
  .form-group a {
    color: #4e89c0;
    text-decoration: none;
  }
  
  .form-group a:hover {
    text-decoration: underline;
  }
  
  button {
    width: 100%;
    padding: 0.75rem;
    background: #4e89c0;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif; 
    margin-top: 1rem;
  }
  
  button:hover {
    background: #3c72a4;
  }
  
  .extra-options {
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .extra-options span {
    display: block;
    margin-bottom: 1rem;
  }
  
  .extra-options a {
    color: #4e89c0;
    text-decoration: none;
  }
  
  .extra-options a:hover {
    text-decoration: underline;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
    margin-top: -10px;
  
}

.checkbox-group label {
  margin: 0; /* Reset margin to align properly */
  margin-left: 10px;
}


.checkbox-group input[type="checkbox"] {
   margin: 0;
}

.checkbox-group a {
  margin-left: auto; /* Move the link to the right */
  font-size: 14px;
  margin-top: 0; /* Ensure alignment with the checkbox and label */
}

/* Add this CSS for the input-wrapper */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input[type="text"],
.input-wrapper input[type="password"] {
  flex: 1;
  padding-right: 30px; /* Add space for the icon */
  border-radius: 25px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%; /* Make it full height to align center */
}

.label-error-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.error-message {
  color: #D73B69;
  margin-left: 20px;
}
