/* auth.css – v2 Authentication pages */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #001F6E 0%, #0039B5 50%, #0052FF 100%);
  padding: 2rem 1rem;
}
.auth-container {
  width: 100%; max-width: 440px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.auth-logo {
  text-align: center; margin-bottom: 1.5rem;
}
.auth-logo .logo-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  margin: 0 auto .6rem;
}
.auth-logo h1 {
  font-size: 1.4rem; margin-bottom: .15rem;
}
.auth-logo p { color: var(--text-muted); font-size: .875rem; }

/* Plan selector */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: .75rem; margin: 1rem 0 1.5rem; }
.plan-option {
  border: 2px solid var(--border); border-radius: var(--radius-md);
  padding: 1rem; cursor: pointer; transition: all .15s;
  background: var(--surface);
}
.plan-option:hover, .plan-option.selected { border-color: var(--brand); background: var(--brand-light); }
.plan-option input[type="radio"] { display: none; }
.plan-name { font-weight: 800; font-size: .95rem; color: var(--text); margin-bottom: .25rem; }
.plan-price { font-size: 1.3rem; font-weight: 900; color: var(--brand); }
.plan-price span { font-size: .8rem; font-weight: 500; color: var(--text-muted); }
.plan-features { list-style: none; margin-top: .65rem; display: grid; gap: .3rem; }
.plan-features li { font-size: .8rem; color: var(--text-muted); }
.plan-features li::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* Google sign-in centering */
.g_id_signin { display: flex; justify-content: center; margin: .75rem 0; }
.auth-divider { text-align: center; color: var(--text-faint); font-size: .8rem; margin: .75rem 0; position: relative; }
.auth-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.auth-divider span { background: var(--surface); padding: 0 .6rem; position: relative; z-index: 1; }
.auth-links { text-align: center; font-size: .82rem; color: var(--text-muted); }
.auth-links a { color: var(--brand); font-weight: 600; }