:root { --blue:#2563eb; --blue-d:#1d4ed8; --sky:#0ea5e9; --ink:#0f172a; --muted:#64748b; }
* { box-sizing:border-box; }
html,body { height:100%; }
body { margin:0; font-family:system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; color:#1f2937; background:#f3f6fb; }
.auth-wrap { min-height:100vh; display:flex; }
.auth-brand { flex:1 1 50%; position:relative; overflow:hidden; color:#fff;
    background:linear-gradient(135deg,var(--blue) 0%,var(--blue-d) 55%,#1e3a8a 100%);
    padding:56px 60px; display:flex; flex-direction:column; justify-content:space-between; }
.auth-brand::before { content:""; position:absolute; width:520px; height:520px; border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.16), transparent 65%); top:-160px; right:-140px; }
.auth-brand::after { content:""; position:absolute; width:380px; height:380px; border-radius:50%;
    background:radial-gradient(circle, rgba(14,165,233,.35), transparent 65%); bottom:-120px; left:-100px; }
.auth-brand .inner { position:relative; z-index:2; }
.wordmark { font-weight:800; font-size:1.7rem; letter-spacing:0; text-decoration:none; color:#fff;
            display:inline-block; }
.wordmark span { color:#7dd3fc; }
.wordmark .brand-logo-img { height:44px; width:auto; max-width:220px; display:block; }
.auth-brand h1 { font-weight:800; font-size:2.5rem; line-height:1.12; letter-spacing:0; margin:28px 0 14px; }
.auth-brand p.sub { color:#dbeafe; font-size:1.05rem; max-width:420px; }
.feat-list { list-style:none; padding:0; margin:30px 0 0; max-width:420px; }
.feat-list li { display:flex; align-items:center; gap:12px; padding:9px 0; color:#eff6ff; font-size:.96rem; }
.feat-list .tick { width:26px; height:26px; flex:0 0 26px; border-radius:50%; background:rgba(255,255,255,.18);
    display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:700; }
.quote-box { position:relative; z-index:2; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.18);
    border-radius:14px; padding:18px 20px; backdrop-filter:blur(4px); max-width:460px; }
.quote-box p { margin:0 0 8px; font-style:italic; color:#f0f9ff; font-size:.95rem; }
.quote-box .who { font-weight:700; font-size:.85rem; }
.quote-box .role { color:#bfdbfe; font-size:.78rem; }
.stars { color:#fcd34d; letter-spacing:2px; font-size:.8rem; }
.auth-form-side { flex:1 1 50%; display:flex; align-items:center; justify-content:center; padding:40px 24px; overflow-y:auto; }
.auth-card { width:100%; max-width:400px; }
.auth-card.wide { max-width:480px; }
.auth-card .top-link { text-align:right; font-size:.85rem; color:var(--muted); margin-bottom:24px; }
.auth-card .top-link a { color:var(--blue); font-weight:600; }
.auth-card h2 { font-weight:800; color:var(--ink); letter-spacing:0; font-size:1.7rem; margin-bottom:4px; }
.auth-card .lead-sm { color:var(--muted); font-size:.95rem; margin-bottom:26px; }
.form-label { font-weight:600; font-size:.85rem; color:#334155; margin-bottom:6px; }
.form-control { height:48px; border-radius:10px; border:1.5px solid #e2e8f0; font-size:.95rem; padding:0 14px; }
.form-control:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(37,99,235,.12); }
select.form-control { -webkit-appearance:none; appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 14px center; padding-right:34px; }
.input-wrap { position:relative; }
.input-wrap .toggle { position:absolute; right:12px; top:50%; transform:translateY(-50%); cursor:pointer;
    color:var(--muted); font-size:.8rem; user-select:none; }
.btn-blue { height:48px; border-radius:10px; background:var(--blue); border:none; color:#fff; font-weight:700;
    width:100%; font-size:.98rem; transition:.15s; }
.btn-blue:hover { background:var(--blue-d); }
.row-between { display:flex; align-items:center; justify-content:space-between; }
.forgot { font-size:.83rem; color:var(--blue); font-weight:600; text-decoration:none; }
.remember { font-size:.88rem; color:#475569; }
.divider { text-align:center; color:#94a3b8; font-size:.8rem; margin:22px 0; position:relative; }
.divider::before,.divider::after { content:""; position:absolute; top:50%; width:40%; height:1px; background:#e2e8f0; }
.divider::before { left:0; } .divider::after { right:0; }
.signup-line { text-align:center; font-size:.9rem; color:var(--muted); }
.signup-line a { color:var(--blue); font-weight:700; }
.text-danger.small { display:block; margin-top:6px; }
.admin-hint { text-align:center; margin-top:18px; font-size:.8rem; }
.admin-hint a { color:#94a3b8; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:900px){ .auth-brand{ display:none; } .auth-form-side{ flex-basis:100%; } }
@media (max-width:420px){ .grid-2{ grid-template-columns:1fr; } }

/* auth/partials/demo-logins.blade.php — only ever included on auth layout pages */
.demo-logins { margin-top:18px; padding-top:16px; border-top:1px dashed #e2e8f0; }
.demo-logins__label { font-size:.72rem; font-weight:700; letter-spacing:.04em;
    text-transform:uppercase; color:#94a3b8; margin-bottom:10px; text-align:center; }
.demo-logins__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }
.demo-chip { border:1px solid #e2e8f0; background:#f8fafc; color:#1e293b;
    border-radius:8px; padding:9px 10px; font-size:.82rem; font-weight:600;
    cursor:pointer; transition:all .15s; }
.demo-chip:hover { background:#eff6ff; border-color:#bfdbfe; color:#1d4ed8; }
.demo-logins__hint { margin-top:10px; font-size:.72rem; color:#94a3b8; text-align:center; }
