/* Login Page Specific Styling */
.login-section {
    max-width: 500px;
    margin: 2rem auto;
    background-color: white;
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  
  .login-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
  }
  
  .login-section form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .login-section .form-group {
    margin-bottom: 0;
  }
  
  .login-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
  }
  
  .login-section input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.2s ease;
  }
  
  .login-section input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  }
  
  .login-section button {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 0.5rem;
    width: 100%;
  }
  
  .login-section button:hover {
    background-color: #2563eb;
  }
  
  .login-section p {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
  }
  
  .login-section a {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
  }
  
  .login-section a:hover {
    text-decoration: underline;
  }
  
  .error-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    color: #b91c1c;
  }
  
  .error-message ul {
    margin: 0;
    padding-left: 1.25rem;
  }
  
  .error-message li {
    margin-bottom: 0.25rem;
  }
  
  .error-message li:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .login-section {
      padding: 1.5rem;
      margin: 1rem;
      max-width: none;
    }
    
    .login-section h1 {
      font-size: 1.6rem;
    }
  }

  