/* ═══════════════════════ AUTH PAGES ═══════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}
.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.auth-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.auth-header p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.auth-footer a {
  color: var(--indigo-light);
  text-decoration: none;
  font-weight: 600;
}
.auth-footer a:hover {
  text-decoration: underline;
}

/* Google SSO Button */
.btn-google {
  background: var(--white);
  color: #333;
  border: 1px solid var(--border);
  gap: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.btn-google:hover:not(:disabled) {
  background: var(--surface-alt);
  border-color: var(--text-secondary);
}
.btn-google svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .auth-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}
