@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');
:root { --ink: #17211f; --muted: #68736f; --paper: #f4f1e9; --lime: #d7f36a; --line: #d6d8ce; --red: #b34a3e; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Manrope, sans-serif; }
button, input { font: inherit; }
.auth-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: #e7e8dd; }
.auth-shell { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(360px, .86fr); width: min(1080px, 100%); min-height: 650px; background: #fffdf8; box-shadow: 14px 18px 0 #cfd2c4; }
.brand-panel { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(36px, 6vw, 76px); background: var(--ink); color: var(--paper); }
.eyebrow { margin: 0; color: #84908a; font: 500 12px/1.3 'DM Mono', monospace; letter-spacing: .08em; }
.brand-panel .eyebrow { color: var(--lime); }
h1, h2, p { margin-top: 0; }
.brand-panel h1 { max-width: 560px; margin: auto 0 20px; font-size: clamp(36px, 5vw, 62px); line-height: 1.03; letter-spacing: -.04em; }
.brand-panel h1 em { color: var(--lime); font-style: normal; }
.brand-copy { max-width: 340px; margin: 0; color: #aeb8b2; font-size: 15px; line-height: 1.7; }
.login-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 76px); }
.panel-heading { display: flex; align-items: center; gap: 9px; margin-bottom: 58px; color: var(--muted); font: 500 11px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .07em; }
.status-dot { width: 7px; height: 7px; background: #65a35a; border-radius: 50%; }
.login-panel h2 { margin-bottom: 10px; font-size: 32px; letter-spacing: -.04em; }
.muted { margin-bottom: 36px; color: var(--muted); font-size: 14px; line-height: 1.6; }
label { display: block; margin: 20px 0 8px; color: var(--muted); font-size: 12px; font-weight: 700; }
input { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: 0; color: var(--ink); background: transparent; font-size: 15px; }
input:focus { border-color: var(--ink); }
button { border: 0; cursor: pointer; }
form button { display: flex; justify-content: space-between; width: 100%; margin-top: 36px; padding: 16px 18px; background: var(--lime); color: var(--ink); font-weight: 800; }
form button:hover { background: #c8e255; }
form button:disabled { cursor: wait; opacity: .65; }
.form-error { min-height: 18px; margin: 15px 0 -9px; color: var(--red); font-size: 12px; }
.login-note { margin: 52px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
code { font-family: 'DM Mono', monospace; font-size: 10px; }
.workspace-page { min-height: 100vh; background: #e7e8dd; }
.topbar { display: flex; justify-content: space-between; align-items: center; padding: 25px 5vw; border-bottom: 1px solid var(--line); background: #fffdf8; }
.wordmark { color: var(--ink); font-size: 20px; font-weight: 800; letter-spacing: .12em; text-decoration: none; }
.wordmark span { color: #79a54d; }
.user-menu { display: flex; align-items: center; gap: 20px; font: 12px 'DM Mono', monospace; }
#logout-button { padding: 8px 12px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 12px; }
.workspace-shell { width: min(1040px, 90%); margin: 0 auto; padding: 90px 0; }
.workspace-shell h1 { margin: 22px 0 10px; font-size: clamp(42px, 7vw, 88px); letter-spacing: -.07em; }
.workspace-intro { color: var(--muted); }
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 72px; }
.test-card { min-height: 245px; padding: 28px; border: 1px solid #cfd2c4; background: #fffdf8; }
.accent-card { background: var(--ink); color: var(--paper); }
.card-index { display: block; margin-bottom: 80px; color: #8b9690; font: 12px 'DM Mono', monospace; }
.test-card h2 { margin-bottom: 12px; font-size: 22px; }
.test-card p { max-width: 340px; margin: 0; color: #89938e; font-size: 13px; line-height: 1.6; }
.accent-card p { color: #aeb8b2; }
@media (max-width: 720px) { .auth-page { padding: 0; } .auth-shell { display: block; min-height: 100vh; box-shadow: none; } .brand-panel { min-height: 340px; padding: 32px; } .brand-panel h1 { margin-top: 90px; font-size: 39px; } .login-panel { min-height: 500px; padding: 38px 32px; } .panel-heading { margin-bottom: 42px; } .test-grid { grid-template-columns: 1fr; margin-top: 45px; } .workspace-shell { padding: 55px 0; } }