/* Auth Pages CSS */
.auth-main {
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .auth-card {
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    width: 100%;
    max-width: 28rem;
  }
  
  .auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .auth-form {
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
  }
  
  .form-group input {
    width: 100%;
    padding: 0.5rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: var(--primary);
  }
  
  .password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .forgot-password {
    font-size: 0.75rem;
    color: var(--primary);
  }
  
  .forgot-password:hover {
    text-decoration: underline;
  }
  
  .form-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
  }
  
  .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .form-check input[type="checkbox"] {
    margin-right: 0.5rem;
  }
  
  .form-check label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }
  
  .date-selects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .date-selects select {
    width: 100%;
    padding: 0.5rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
  }
  
  .auth-separator {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  
  .auth-separator span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
  }
  
  .auth-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-left: 0.25rem;
  }
  
  .auth-link:hover {
    text-decoration: underline;
  }
  
  .social-auth {
    margin-top: 1.5rem;
  }
  
  .social-separator {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .social-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border);
  }
  
  .social-separator span {
    position: relative;
    padding: 0 0.5rem;
    background-color: var(--card);
    color: var(--muted-foreground);
    font-size: 0.75rem;
  }
  
  .social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: white;
    font-size: 0.875rem;
    transition: background-color 0.2s;
  }
  
  .social-btn:hover {
    background-color: var(--muted);
  }
  
  .social-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
  }
  
  .auth-footer {
    margin-top: 2rem;
    text-align: center;
  }