body {
    background-image: url("images/abstract-smooth-elegant-blue-background-min.jpg");
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lato', sans-serif;
  }
  
  .edox-login-container {
    max-width: 1100px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 90%;
  }
  
  .edox-login-left, .edox-login-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .edox-login-left {
    padding: 3rem;
    text-align: center;
  }
  
  .edox-login-right {
    background: url("images/edox-right-image.png");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem;
  }
  
  .edox-login-form {
    gap: 0.5rem;
    width: 338px;
  }
  
  .line-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
  }
  
  .line-container span {
    flex: 1;
    height: 1px;
    background: gray;
  }
  
  .line-container p {
    margin: 0 1rem;
    font-size: 0.9rem;
    color: gray;
  }
  
  .form-label {
    font-size: 14px;
    color: #6c757d;
    z-index: 1;
  }
  
  .form-control {
    border: 2px solid #616161;
    border-radius: 0.375rem;
    box-shadow: none;
  }
  
  .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
    outline: none;
  }
  
  .position-relative i {
    font-size: 1rem;
    color: #6c757d;
  }
  
  /* Media Queries */
@media (max-width: 768px) {
    .edox-login-container {
      height: auto;
    }
  
    .edox-login-left, .edox-login-right {
      padding: 1.5rem;
    }
  
    .edox-login-left h3 {
      font-size: 1.5rem;
    }
    
    .edox-login-right h3 {
      font-size: 1.25rem;
    }
}

.login_btn:hover{
  background-color: #0d4d7a !important;

  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.gmail_login_btn:hover{
  background-color: #f0ecec4d !important;

  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.forgot_password:hover{
  text-decoration: underline !important;
}
#passwordInput::placeholder { color: #C6C5C5; }
#username::placeholder { color: #C6C5C5; }
  