body, html {
    margin: 0;
    padding: 0;
  }
  
  .login-page {
    display: flex;
    height: 100vh;
    font-family: sans-serif !important;
  }
  
  /* Left Side */
  .login-left {
    flex: 1.3; /* Increased width by changing flex value */
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .login-left .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(183, 49, 76, 0.832);
    z-index: 1;
  }
  
  .login-text {
    position: fixed;
    z-index: 1;
    max-width: 600px;
    text-align: center;
  }
  
  .login-text h2 {
    font-size: 30px;
    font-style: italic;
    font-weight: 450;
    font-family: georgia, sans-serif;
    margin-bottom: 0px;
  
}
  
  .login-text p {
    font-size: 16px;
    font-family: sans-serif;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 1px;
}
  
  /* Right Side */
  .login-right {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
  }
  
  .form-box {
    width: 65%;
    max-width: 400px;
    text-align: center;
    border-radius: 1px;
  }
  
  .logo {
    width: 100px;
    margin-bottom: 0px;
  }
  
  h3 {
    margin-top: 0px;
    color: #333;
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 40px;
  }
  
  h3 .highlight {
    color: #d7264e;
    font-weight: bold;
  }
  
  /* Input group */
  .input-group {
    position: relative;
    display: flex;
  align-items: center;
  border: 1.5px solid #d64561;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 35px;
  background: #fff;
  }
  
  .input-group input {
    width: 100%;
    padding: 12px 40px 12px 35px;
    border: 3px solid #d7264e;
    border-radius: 1px;
    font-size: 14px;
  }
  
  .input-group i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #d7264e;
  }
  
.input-group i.fas.fa-user,
.input-group i.fas.fa-lock {
  background: #ea7a8e;
  color: #c5455a;
  padding: 10px 0px;
  font-size: 1rem;
  border-right: 1.5px solid #d64561;
  min-width: 48px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group input[type="text"],
.input-group input[type="password"] {
  border: none;
  outline: none;
  padding: 10px 0px 10px 12px; /* left padding after icon */
  font-size: 1rem;
  flex: 1;
  background: transparent;
  color: #333;
  position: relative;
  z-index: 1;
}

.input-group input[type="text"]::placeholder,
.input-group input[type="text"]::placeholder,
.input-group input[type="password"]::placeholder { 
  color: #acabab;
  opacity: 1;
  font-size: 14px;
  
}

.input-group .toggle-password {
  background: none;
  border: none;
  color: #c5455a;
  padding: 0 14px;
  font-size: 1.1rem;
  cursor: pointer;
  border-left: 1.5px solid #d64561;
  height: 100%;
  display: flex;
  align-items: center;
}
  
  /* Buttons */
  .login-btn {
    width: 50%;
    padding: 12px;
    background-color: #522c35;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 5px;
  }
  
  .google-btn {
    width: 60%;
    margin-top: 15px;
    padding: 7px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    background-color: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: 75px;
  }
  
  /* Links */
  .login-links {
    margin-top: 20px;
    font-size: 13px;
  }
  
  .login-links a {
    color: #d7264e;
    text-decoration: none;
    margin: 0 0px;
  }

  @media screen and (max-width: 768px) {
    .login-page {
      flex-direction: column;
    }
  
    .login-left {
      flex: .5; /* Adjusted width for smaller screens */
      padding: 20px;
    }

    .login-left .overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(214, 69, 97, 0.85);
      z-index: 0;
    }
  
    .login-text {
      position: relative;
      z-index: 1;
      max-width: 100%;
      text-align: center;
    }
  
    .form-box {
      width: 90%;
    }
    
  }

.text-danger{
  color:#DB4E68 !important;
}