* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #121212; color: #e4e4e4; min-height: 100vh; }

a { color: inherit; text-decoration: none; }

.page-shell { position: relative; min-height: 100vh; display: flex; flex-direction: column; padding: 24px 32px 32px; background: radial-gradient(circle at top right, rgba(109, 93, 222, 0.24), transparent 45%), radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.18), transparent 50%), #141414; }

.page-shell::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% -10%, rgba(250, 204, 21, 0.12), transparent 50%); opacity: 0.7; pointer-events: none; z-index: 0; }

.content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 64px; }

.top-nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: baseline; gap: 8px; font-weight: 700; letter-spacing: 0.4px; color: #f8fafc; font-size: 20px; }

.brand span { color: #6D5DDE; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.beta-flag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(251, 191, 36, 0.16); color: #facc15; font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 10px; border: 1px solid transparent; font-weight: 600; font-size: 14px; transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease; cursor: pointer; }

.btn-primary { background: #6D5DDE; color: #ffffff; border-color: rgba(109, 93, 222, 0.6); }

.btn-primary:hover { background: #7f72ed; border-color: rgba(109, 93, 222, 0.9); transform: translateY(-1px); }

.btn-secondary { background: rgba(42, 42, 42, 0.7); color: #f8fafc; border-color: rgba(74, 74, 74, 0.6); }

.btn-secondary:hover { background: rgba(58, 58, 58, 0.8); border-color: rgba(109, 93, 222, 0.5); transform: translateY(-1px); }

.auth-main { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: 56px; align-items: center; }

.auth-info { display: flex; flex-direction: column; gap: 24px; }

.beta-note { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; background: rgba(251, 191, 36, 0.14); color: #facc15; font-size: 13px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; }

.beta-note span { color: #fef3c7; font-size: 12px; text-transform: none; font-weight: 500; }

.auth-info h1 { font-size: clamp(36px, 5vw, 48px); line-height: 1.1; letter-spacing: -0.6px; color: #ffffff; }

.auth-info p { font-size: 16px; line-height: 1.65; color: #cbd5f5; max-width: 520px; }

.auth-highlights { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.auth-highlights li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(32, 32, 32, 0.85); border: 1px solid rgba(58, 58, 58, 0.85); font-size: 14px; color: #d4dcff; }

.auth-highlights li span { display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; border-radius: 999px; background: rgba(109, 93, 222, 0.3); color: #ffffff; font-size: 12px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase; }

.auth-card { position: relative; padding: 32px; border-radius: 24px; background: rgba(24, 24, 24, 0.94); border: 1px solid rgba(54, 54, 54, 0.85); box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45); display: flex; flex-direction: column; gap: 24px; }

.auth-card h2 { font-size: 24px; font-weight: 700; color: #ffffff; letter-spacing: -0.4px; }

.auth-card p { font-size: 14px; color: #a5b4fc; line-height: 1.6; }

.form-grid { display: flex; flex-direction: column; gap: 18px; }

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-label { font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: #a3a3ff; }

.form-input { width: 100%; background: #0f0f0f; border: 2px solid #2a2a2a; border-radius: 12px; padding: 14px 16px; color: #f8fafc; font-size: 14px; transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }

.form-input:focus { outline: none; border-color: rgba(109, 93, 222, 0.7); background: #161616; box-shadow: 0 0 0 4px rgba(109, 93, 222, 0.18); }

.form-input:hover:not(:focus) { border-color: rgba(109, 93, 222, 0.35); }

.form-actions { display: flex; flex-direction: column; gap: 12px; }

.link-row { display: flex; gap: 8px; font-size: 13px; color: #9ca3af; }

.link-row a { color: #dacfff; font-weight: 600; }

.link-row a:hover { color: #ffffff; }

.footer { margin-top: auto; padding-top: 64px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #9ca3af; border-top: 1px solid rgba(42, 42, 42, 0.8); }

.footer-links { display: flex; gap: 18px; }

.footer-links a { color: #a3a3a3; }

.footer-links a:hover { color: #f1f5f9; }

@media (max-width: 960px) {
  .auth-main { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .auth-card { order: -1; }
}

@media (max-width: 640px) {
  .page-shell { padding: 24px 20px 28px; }
  .nav-actions { display: none; }
  .auth-card { padding: 26px; }
  .form-actions .btn { width: 100%; }
  .footer { flex-direction: column; gap: 16px; align-items: flex-start; }
}
