*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', system-ui, sans-serif; min-height: 100vh; }
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.login-wrap { grid-template-columns: 420px 1fr; }
.auth-side { background: #0f2744; padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; }
.auth-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 48px; }
.logo-mark { background: #d4a017; color: #0f2744; font-weight: 900; font-size: 16px; padding: 6px 10px; border-radius: 7px; }
.logo-name { color: #fff; font-weight: 800; font-size: 20px; font-family: 'Playfair Display', serif; }
.auth-side h1 { font-family: 'Playfair Display', serif; font-size: 36px; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.auth-side p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; }
.auth-benefits { list-style: none; margin-top: 24px; }
.auth-benefits li { color: rgba(255,255,255,.8); font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.auth-form-side { background: #f8fafc; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-form-box { background: #fff; border-radius: 16px; padding: 40px; width: 100%; max-width: 480px; box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 10px 30px rgba(0,0,0,.06); }
.auth-form-box h2 { font-size: 24px; font-weight: 800; color: #0f2744; margin-bottom: 6px; }
.auth-sub { font-size: 14px; color: #6b7280; margin-bottom: 28px; }
.auth-sub a { color: #0f2744; font-weight: 600; text-decoration: none; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .3px; }
.field input, .field select { width: 100%; border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 10px 14px; font-size: 14px; outline: none; transition: border-color .15s, box-shadow .15s; font-family: inherit; }
.field input:focus, .field select:focus { border-color: #0f2744; box-shadow: 0 0 0 3px rgba(15,39,68,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; background: #0f2744; color: #fff; border: none; border-radius: 8px; padding: 13px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .15s; font-family: inherit; margin-top: 8px; }
.btn-submit:hover { background: #1a3a5c; }
.auth-terms { font-size: 12px; color: #9ca3af; margin-top: 12px; text-align: center; line-height: 1.5; }
.alert-error { background: #fee2e2; color: #dc2626; padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
@media (max-width: 768px) { .auth-wrap, .login-wrap { grid-template-columns: 1fr; } .auth-side { padding: 32px 24px; } .field-row { grid-template-columns: 1fr; } }
