﻿/* From: forgot-password.blade.php */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-10);
    width: 100%;
    max-width: 440px;
  }
  .auth-logo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading); font-size: var(--text-2xl);
    font-weight: var(--font-extrabold); color: #0f3460;
    text-align: center; margin-bottom: var(--space-6);
  }
  .auth-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-align: center;
  }
  .auth-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-2);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
  }
  .auth-link {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: var(--font-medium);
  }
  .auth-link:hover {
    text-decoration: underline;
  }
  .auth-footer-text {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-6);
  }
  .auth-footer-text a {
    color: var(--primary);
    font-weight: var(--font-semibold);
  }
  .auth-footer-text a:hover {
    text-decoration: underline;
  }
  .auth-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: var(--space-4);
  }

/* From: login.blade.php */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-10);
    width: 100%;
    max-width: 440px;
  }
  .auth-logo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading); font-size: var(--text-2xl);
    font-weight: var(--font-extrabold); color: #0f3460;
    text-align: center; margin-bottom: var(--space-6);
  }
  .auth-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-align: center;
  }
  .auth-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-2);
    margin-bottom: var(--space-6);
  }
  .auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin: var(--space-6) 0;
    color: var(--text-muted);
    font-size: var(--text-xs);
  }
  .auth-divider::before,
  .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .social-btns {
    display: flex;
    gap: var(--space-3);
  }
  .social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 10px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
  }
  .social-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
  }
  .social-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .auth-link {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: var(--font-medium);
  }
  .auth-link:hover {
    text-decoration: underline;
  }
  .auth-footer-text {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-6);
  }
  .auth-footer-text a {
    color: var(--primary);
    font-weight: var(--font-semibold);
  }
  .auth-footer-text a:hover {
    text-decoration: underline;
  }

/* SSO provider-specific overrides */
.sso-google:hover {
    border-color: #4285F4;
    background: #f0f6ff;
    color: #1a1a1a;
}
.sso-facebook:hover {
    border-color: #1877F2;
    background: #f0f4ff;
    color: #1a1a1a;
}
.social-btn svg.social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* From: register.blade.php */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-10);
    width: 100%;
    max-width: 480px;
  }
  .auth-logo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading); font-size: var(--text-2xl);
    font-weight: var(--font-extrabold); color: #0f3460;
    text-align: center; margin-bottom: var(--space-6);
  }
  .auth-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-align: center;
  }
  .auth-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-2);
    margin-bottom: var(--space-6);
  }
  .auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin: var(--space-6) 0;
    color: var(--text-muted);
    font-size: var(--text-xs);
  }
  .auth-divider::before,
  .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .social-btns {
    display: flex;
    gap: var(--space-3);
  }
  .social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 10px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
  }
  .social-btn:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
  }
  .social-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .auth-link {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: var(--font-medium);
  }
  .auth-link:hover {
    text-decoration: underline;
  }
  .auth-footer-text {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-6);
  }
  .auth-footer-text a {
    color: var(--primary);
    font-weight: var(--font-semibold);
  }
  .auth-footer-text a:hover {
    text-decoration: underline;
  }
  .account-type {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }
  .account-type-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
  }
  .account-type-option:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-50);
    color: var(--primary);
  }
  .account-type-option input[type="radio"] {
    accent-color: var(--primary);
  }
  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  @media (max-width: 480px) {
    .form-grid-2 {
      grid-template-columns: 1fr;
    }
    .account-type {
      flex-direction: column;
    }
  }

/* From: reset-password.blade.php */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-10);
    width: 100%;
    max-width: 440px;
  }
  .auth-logo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading); font-size: var(--text-2xl);
    font-weight: var(--font-extrabold); color: #0f3460;
    text-align: center; margin-bottom: var(--space-6);
  }
  .auth-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-align: center;
  }
  .auth-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-2);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
  }
  .password-strength {
    display: flex;
    gap: var(--space-1);
    margin-top: var(--space-2);
  }
  .strength-bar {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: var(--gray-200);
  }
  .strength-bar.active {
    background: var(--success);
  }
  .password-rules {
    margin-top: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }
  .password-rule {
    font-size: var(--text-xs);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  .password-rule .check {
    color: var(--success);
  }

/* From: verify-email.blade.php */
.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-10);
    width: 100%;
    max-width: 440px;
    text-align: center;
  }
  .auth-logo {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-heading); font-size: var(--text-2xl);
    font-weight: var(--font-extrabold); color: #0f3460;
    margin-bottom: var(--space-6);
  }
  .auth-heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
  }
  .auth-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-2);
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
  }
  .auth-icon {
    font-size: 64px;
    margin-bottom: var(--space-4);
  }
  .email-highlight {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
  }
  .auth-footer-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-6);
  }
  .auth-footer-text a {
    color: var(--primary);
    font-weight: var(--font-semibold);
  }
  .auth-footer-text a:hover {
    text-decoration: underline;
  }
  .resend-info {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-3);
  }
