/* Login Page Specific Styles */
.auth-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding: 40px 0;
    background-color: #f8f9fa;
  }
  
  .auth-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    margin-right: -50px;
    z-index: 1;
  }
  
  .auth-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .auth-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .auth-header p {
    color: #4a5568;
  }
  
  .auth-form {
    margin-top: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a6fa5;
  }
  
  .input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .input-with-icon input:focus {
    border-color: #4a6fa5;
    outline: none;
  }
  
  .show-password {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
  }
  
  .remember-me input {
    margin-right: 8px;
  }
  
  .forgot-password {
    color: #4a6fa5;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  .btn-block {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
  }
  
  .auth-footer {
    text-align: center;
    margin-top: 20px;
    color: #4a5568;
  }
  
  .auth-footer a {
    color: #4a6fa5;
    text-decoration: none;
    font-weight: 500;
  }
  
  .auth-footer a:hover {
    text-decoration: underline;
  }
  
  .auth-illustration {
    max-width: 500px;
  }
  
  .auth-illustration img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  @media (max-width: 992px) {
    .auth-container {
      flex-direction: column;
      padding: 20px;
    }
    
    .auth-card {
      margin-right: 0;
      margin-bottom: 30px;
      max-width: 100%;
    }
    
    .auth-illustration {
      display: none;
    }
  }