/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
  }
  
  /* Auth Container */
  .auth-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
  }
  
  .auth-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    text-align: center;
  }
  
  /* Typography */
  .auth-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2d3748;
  }
  
  .auth-subtitle {
    font-size: 14px;
    color: #718096;
    margin-bottom: 32px;
  }
  
  /* Form Styles */
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    text-align: left;
  }
  
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
  }
  
  input[type="text"],
  input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  
  input[type="text"]:focus,
  input[type="password"]:focus {
    border-color: #4299e1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
  }
  
  /* Button */
  .auth-button {
    width: 100%;
    padding: 14px;
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .auth-button:hover {
    background-color: #3182ce;
  }
  
  /* Footer Links */
  .auth-footer {
    margin-top: 24px;
    font-size: 14px;
  }
  
  .auth-footer p {
    color: #718096;
    margin-bottom: 8px;
  }
  
  .auth-footer a {
    color: #4299e1;
    text-decoration: none;
  }
  
  .forgot-password {
    display: inline-block;
    margin-top: 8px;
    color: #718096;
  }
  
  /* Error Handling */
  .form-error, .error-message {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 4px;
  }
  
  .form-error {
    padding: 12px;
    background-color: #fff5f5;
    border-radius: 6px;
    margin-bottom: 16px;
  }