:root { --accent:#E8602C; --bg:#faf7f4; --ink:#1c1c1e; --muted:#6b6b70; }
* { box-sizing:border-box; }
body { margin:0; font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg); color:var(--ink); line-height:1.6; }
.wrap { max-width:760px; margin:0 auto; padding:32px 20px 80px; }
header.top { display:flex; align-items:center; gap:10px; margin-bottom:24px; }
header.top .logo { width:38px; height:38px; border-radius:10px; background:var(--accent);
  display:grid; place-items:center; color:#fff; font-size:20px; }
header.top h1 { font-size:20px; margin:0; }
h1.title { font-size:28px; margin:0 0 4px; }
.muted { color:var(--muted); }
h2 { font-size:18px; margin-top:32px; }
a { color:var(--accent); }
.card { background:#fff; border-radius:16px; padding:20px 24px; box-shadow:0 1px 3px rgba(0,0,0,.06); }
.warn { background:#fdecea; border:1px solid #f3b6ae; border-radius:12px; padding:16px 20px; margin:20px 0; }
.btn { display:inline-block; background:var(--accent); color:#fff; text-decoration:none; padding:12px 18px;
  border-radius:12px; font-weight:600; border:none; font-size:16px; cursor:pointer; }
input[type=password] { width:100%; padding:12px 14px; border:1px solid #d9d4cf; border-radius:10px; font-size:16px; }
footer { margin-top:48px; font-size:13px; }
