:root { color: #161616; background: #f5f0e8; font-family: Arial, Helvetica, sans-serif; }
* { box-sizing: border-box; }
body { min-width: 320px; margin: 0; }
.login-page { display: grid; min-height: 100vh; place-items: center; padding: 24px; }
.login-card { width: min(100%, 440px); padding: 32px; border: 1px solid #161616; background: #fdfaf4; box-shadow: -7px 7px 0 #161616; }
.eyebrow { margin: 0 0 18px; font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2.2rem, 10vw, 4rem); line-height: .95; letter-spacing: -.06em; }
p { line-height: 1.45; }
form { display: grid; gap: 15px; margin-top: 28px; }
label { display: grid; gap: 7px; font-size: .87rem; font-weight: 700; }
input { min-height: 44px; padding: 8px 10px; border: 1px solid #161616; border-radius: 0; background: #fff; font: inherit; }
button { min-height: 44px; border: 1px solid #161616; border-radius: 0; background: #161616; color: #fff; cursor: pointer; font: inherit; font-weight: 700; }
button:focus-visible, input:focus-visible { outline: 3px solid #161616; outline-offset: 3px; }
#login-error { margin: 0; font-weight: 700; }
@media (max-width: 480px) { .login-card { padding: 22px; box-shadow: -5px 5px 0 #161616; } }
