.login-body {
  min-height: 100vh; margin: 0; position: relative; overflow-x: hidden;
  background: #0b1a36;
  background-image:
    radial-gradient(1px 1px at 20px 20px, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 40px 40px;
  color: #fff;
}
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .75; }
.glow-a { width: 640px; height: 640px; left: -160px; top: -200px; background: #2d5ff0; }
.glow-b { width: 520px; height: 520px; right: -120px; bottom: -220px; background: #4a3fb8; }

.login-stage {
  position: relative; min-height: 100vh; display: grid; grid-template-columns: 1.15fr 1fr;
  align-items: center; gap: 4rem; max-width: 1180px; margin: 0 auto; padding: 3rem 2rem;
}
.pitch .brand { display: inline-flex; align-items: center; gap: .65rem; color: #fff; font-weight: 800; font-size: 1.35rem; padding: 0; margin-bottom: 2.5rem; }
.pitch h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); line-height: 1.12; letter-spacing: -.02em; max-width: 17ch; margin: 0 0 1rem; }
.pitch .lead { color: #b7c6ea; font-size: 1.08rem; max-width: 48ch; margin: 0 0 2.25rem; }
.perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; max-width: 520px; }
.perks li { display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: start; }
.perks svg { width: 44px; height: 44px; padding: 11px; border-radius: 12px; background: rgba(109,149,255,.16); border: 1px solid rgba(109,149,255,.35); fill: none; stroke: #9dbaff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.perks strong { display: block; color: #fff; font-weight: 600; }
.perks span { color: #a9b9de; font-size: .92rem; line-height: 1.45; }

.panel { display: flex; justify-content: center; }
.login-form {
  width: min(420px, 100%); background: #fff; color: var(--text); border-radius: 18px; padding: 2.25rem 2.25rem 1.75rem;
  box-shadow: 0 30px 80px rgba(3,12,32,.55), 0 0 0 1px rgba(255,255,255,.08);
}
.login-form h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; margin: 0 0 .25rem; }
.login-form .sub { color: var(--muted); margin: 0 0 1.5rem; }
.login-form label { margin-top: 1rem; }
.login-form label:first-of-type { margin-top: 0; }
.field { position: relative; }
.field svg { position: absolute; left: .8rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; fill: none; stroke: var(--muted); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.field input { padding-left: 2.5rem; height: 46px; }
.login-form .btn.wide { margin-top: 1.5rem; height: 46px; font-size: 1rem; }
.login-form .hint { color: var(--muted); font-size: .85rem; text-align: center; margin: 1.25rem 0 0; }
.login-form .flash { margin-bottom: 1rem; }

@media (prefers-reduced-motion: no-preference) {
  .login-form { animation: rise .5s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } }
}
@media (max-width: 900px) {
  .login-stage { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.25rem; align-content: start; }
  .pitch .brand { margin-bottom: 1.5rem; }
  .perks { display: none; }
  .pitch .lead { margin-bottom: 0; }
}

.btn.google { display: flex; align-items: center; justify-content: center; gap: .6rem; width: 100%; height: 46px; font-weight: 600; border-color: #d6dce8; }
.btn.google:hover { background: #f6f8fc; border-color: #b9c3d6; }
.or { display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .82rem; margin: 1.1rem 0 .9rem; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.login-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.login-form .two label { margin-top: 0; }
.login-form .two + label { margin-top: 1rem; }
.field.plain input { padding-left: .9rem; }
.login-form .hint a { color: var(--accent, #4C7DFF); }
