/* ACBIZ HMS — Auth Pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --navy: #0A1628; --blue: #0052CC; --blue-light: #E8F0FE;
    --white: #fff; --bg: #F0F4FA; --border: #E2E8F0;
    --text: #0F172A; --text-soft: #64748B; --teal: #00B8A9;
    --font: 'Inter', system-ui, sans-serif;
}
body.auth-body { font-family: var(--font); background: var(--bg); min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; -webkit-font-smoothing: antialiased; }
.auth-wrap { display: grid; grid-template-columns: 1fr 1fr; max-width: 900px; width: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 80px rgba(10,22,40,0.18); }
.auth-card { background: var(--white); padding: 48px 44px; display: flex; flex-direction: column; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; font-size: 18px; color: #0F172A; font-weight: 500; }
.auth-logo strong { color: var(--blue); }
.auth-title { font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.5px; }
.auth-sub   { font-size: 14px; color: var(--text-soft); margin-bottom: 28px; }
.auth-form  { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #334155; }
.form-group input {
    padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 14px; font-family: var(--font); color: var(--text);
    transition: border-color .15s, box-shadow .15s; outline: none; background: var(--white);
}
.form-group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,82,204,0.12); }
.form-group input::placeholder { color: #CBD5E1; }
.auth-btn {
    padding: 13px; background: var(--blue); color: white;
    border: none; border-radius: 10px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: background .15s, transform .1s;
    font-family: var(--font);
}
.auth-btn:hover { background: #0747A6; transform: translateY(-1px); }
.auth-footer { font-size: 13px; color: var(--text-soft); text-align: center; margin-bottom: 12px; }
.auth-footer a { color: var(--blue); font-weight: 600; }
.auth-back { text-align: center; }
.auth-back a { font-size: 12px; color: var(--text-soft); }
.auth-back a:hover { color: var(--blue); }

/* Flash */
.auth-card div[style*="padding:12px"] { border-radius: 8px; font-size: 13px; margin-bottom: 4px; }

/* Side panel */
.auth-side {
    background: linear-gradient(155deg, var(--navy) 0%, #0A2A5C 100%);
    display: flex; align-items: center; justify-content: center; padding: 48px 40px;
}
.auth-side-inner { color: rgba(255,255,255,0.85); }
.as-tagline {
    font-size: 17px; font-weight: 500; line-height: 1.6;
    color: rgba(255,255,255,0.8); margin-bottom: 36px;
    font-style: italic; border-left: 3px solid var(--teal); padding-left: 16px;
}
.as-features { display: flex; flex-direction: column; gap: 14px; }
.as-feat { font-size: 14px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; }

@media (max-width: 640px) {
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-side { display: none; }
    .auth-card { padding: 36px 28px; }
}
