/* app/views/auth/login.css */
:root{ --bg:#f5f7fa; --card:#fff; --primary:#6c5ce7; --danger:#e74c3c; --muted:#7f8c8d; --border:#e6e8eb; }
*{ box-sizing:border-box }
body{display:flex;justify-content:center;align-items:center;min-height:100vh;margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;background:var(--bg)}
.box{background:var(--card);padding:2rem;border-radius:12px;box-shadow:0 6px 24px rgba(0,0,0,.08);width:clamp(300px,90vw,360px);border:1px solid var(--border)}
.box h1{margin:0 0 1rem;font-size:1.3rem}
.error{color:#fff;background:var(--danger);padding:.6rem .75rem;border-radius:8px;margin-bottom:1rem;font-size:.95rem}
.muted{color:var(--muted);font-size:.9rem;margin:.5rem 0 1rem}
label{display:block;margin-bottom:.25rem;font-weight:600;font-size:.9rem}
input[type="text"],input[type="password"]{width:100%;padding:.6rem .7rem;margin-bottom:.9rem;border:1px solid var(--border);border-radius:8px;outline:0;background:#fff}
button{width:100%;padding:.7rem .9rem;background:var(--primary);color:#fff;border:none;border-radius:8px;cursor:pointer;font-weight:600}
.hp{position:absolute;left:-5000px;top:auto;width:1px;height:1px;overflow:hidden}
.foot{text-align:right;margin-top:.75rem}