/* Login minimal y claro */
:root { --bg:#0b1220; --card:#111a2e; --text:#e8eef9; --muted:#9fb0d3; --accent:#3b82f6; --danger:#e6425e; }
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text);display:grid;place-items:center}
.container{width:100%;max-width:380px;background:var(--card);padding:24px;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
h1{font-size:18px;margin:0 0 16px}
label{display:block;font-size:13px;margin:12px 0 6px;color:#c7d3ea}
input[type=email],input[type=password]{width:100%;padding:10px 12px;border-radius:10px;border:1px solid #2a3b5e;background:#0f1830;color:var(--text)}
.button{width:100%;padding:10px;border:0;border-radius:10px;background:var(--accent);color:#fff;font-weight:600;margin-top:16px;cursor:pointer}
.help{font-size:12px;color:var(--muted);margin-top:12px}
.honey{display:none}
.error{background:#3b0d0d;color:#ffd7d7;padding:10px;border-radius:10px;margin:8px 0}
.footer{margin-top:14px;font-size:12px;color:#7f90b2;text-align:center}
