/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f7fafc;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }
  
  /* Login container */
  .login-container {
    max-width: 450px;
    width: 100%;
    padding: 2rem;
  }
  
  /* Branding */
  .brand {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .brand h2 {
    color: #2d3748;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
  
  .brand p {
    color: #718096;
    margin-top: 0.5rem;
  }
  
  /* Card */
  .card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 5px rgba(0, 0, 0, 0.03);
    padding: 2.5rem;
    text-align: center;
  }
  
  /* Login button */
  .login-button {
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
  }
  
  .login-button:hover {
    background-color: #3182ce;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .login-button:active {
    transform: translateY(0);
  }
  
  /* Footer */
  .footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #718096;
  }
  
  .footer a {
    color: #4299e1;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  /* Responsive adjustments */
  @media (max-width: 576px) {
    .login-container {
      padding: 1rem;
    }
    
    .card {
      padding: 1.5rem;
    }
  }