/* 4SureERP Login Styles (clean, centered, dark) */
:root{
  --bg:#0b0f14; --panel:#000000d9; --ink:#fff; --accent:#2ecc71; --muted:#cccccc;
  --border:#2ee3c166;
}
*{box-sizing:border-box}
html,body{height:100%}
body.login-page{
  margin:0;
  background:linear-gradient(180deg,#0b0f14,#060a10);
  display:flex; align-items:center; justify-content:center;
  font:14px/1.4 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--ink);
}
.login-container{ text-align:center }
#lottie-tiger{ width:300px; height:300px; margin-bottom:-20px }
.login-box{
  display:inline-block; width:300px; padding:28px; border-radius:12px;
  background:var(--panel);
  box-shadow:0 10px 35px rgba(0,0,0,.55);
  border:1px solid var(--border);
}
.login-box h2{ margin:0 0 16px 0; font-weight:800; letter-spacing:.3px }
.login-box input{
  width:100%; padding:10px 12px; margin:0 0 10px 0;
  border:1px solid #2ee3c133; border-radius:8px; background:#0f171f; color:var(--ink);
}
.login-box button{
  width:100%; padding:10px 12px; font-weight:700; border:0; border-radius:8px;
  background:var(--accent); color:#fff; cursor:pointer;
  box-shadow:0 6px 18px rgba(46,204,113,.35);
}
.login-box button:hover{ filter:brightness(1.05) }
.login-box a{ display:block; margin-top:10px; color:var(--muted); font-size:12px; text-decoration:none }
.login-box a:hover{ text-decoration:underline }
#error{ color:#ffb4b4; font-size:12px; min-height:16px; margin-top:6px }
