/* Login page styles */
:root { --auth-radius: 28px; }
.login-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: radial-gradient(1200px 500px at 20% 10%, rgba(239,68,68,.3), transparent 60%), #0b0f12; color: #e5e7eb; }
.login-left { display: grid; place-items: center; padding: 24px; }
.login-card { width: 88%; max-width: 560px; border-radius: var(--auth-radius); overflow: hidden; border: 4px solid rgba(255,255,255,.7); box-shadow: 0 30px 120px rgba(239,68,68,.35); }
.login-card img { width: 100%; height: auto; display: block; }
.login-logo { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); }
.login-right { display: grid; align-content: center; padding: 40px 56px; }
.login-form { width: 100%; max-width: 520px; background: rgba(17,24,39,.6); border: 1px solid rgba(148,163,184,.28); border-radius: 16px; padding: 28px; backdrop-filter: blur(6px); }
.login-title { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); color: #f3f4f6; margin-bottom: 18px; }
.form-row { display: grid; gap: 8px; margin-bottom: 14px; }
.form-row label { font-size: .9rem; color: #cbd5e1; }
.field { display: flex; align-items: center; gap: 8px; border: 1px solid rgba(148,163,184,.28); background: rgba(2,6,23,.6); border-radius: 10px; padding: 10px 12px; }
.field input { flex: 1; background: transparent; border: none; outline: none; color: #e5e7eb; font-size: 1rem; }
.toggle-pass { cursor: pointer; color: #94a3b8; }
.actions { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.link { color: #93c5fd; text-decoration: none; font-size: .9rem; }
.link:hover { text-decoration: underline; }
.btn { width: 100%; background: #0a0a0a; color: #fff; border: none; border-radius: 999px; padding: 12px 16px; font-weight: 600; cursor: pointer; box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset; }
.btn[disabled] { opacity: .7; cursor: not-allowed; }
.status { margin-top: 12px; font-size: .92rem; min-height: 20px; }
.status.error { color: #fca5a5; }
.status.success { color: #86efac; }

@media (max-width: 980px) {
  .login-wrap { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .login-right { padding: 28px; }
}