/* Home / HR Login styles */
:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #0ea5e9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; background: var(--bg); color: var(--text); }

.container { max-width: 720px; margin: 40px auto; padding: 24px; }

/* Brand header */
.brand { display: grid; grid-template-columns: 72px auto; gap: 16px; align-items: center; background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(56,189,248,.08)); border: 1px solid rgba(14,165,233,.25); border-radius: 16px; padding: 16px; }
.brand__logo-wrap { width: 72px; height: 72px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08); }
.brand__logo { width: 60px; height: 60px; object-fit: contain; }
.brand__text { display: grid; gap: 4px; }
.brand__name { font-size: 22px; letter-spacing: 1.5px; font-weight: 900; color: #0c1d68; }
.brand__tag { color: #0f172a; opacity: .85; font-weight: 700; }

/* Auth card */
.content.auth { margin-top: 16px; background: var(--card); border: 1px solid #e5e7eb; border-radius: 16px; padding: 24px; color: var(--muted); box-shadow: 0 20px 40px rgba(2, 6, 23, 0.06); }
.auth-form { display: grid; gap: 14px; }
.field { display: grid; gap: 8px; }
.label { font-size: 14px; font-weight: 700; color: #0f172a; }
.input { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; color: #0f172a; font-size: 14px; transition: box-shadow .2s ease, border-color .2s ease; }
.input:focus { outline: none; border-color: rgba(14, 165, 233, .8); box-shadow: 0 0 0 4px rgba(14, 165, 233, .18); }

.actions { display: flex; gap: 10px; align-items: center; justify-content: flex-end; padding-top: 8px; }
.btn { appearance: none; border: 0; border-radius: 12px; padding: 12px 16px; font-weight: 800; letter-spacing: .4px; cursor: pointer; transition: transform .06s ease, filter .2s ease, box-shadow .2s ease; text-decoration: none; font-size: 14px; }
.btn:active { transform: translateY(1px); }
.btn.primary { background: linear-gradient(135deg, #38bdf8, #0ea5e9); color: #031525; box-shadow: 0 10px 20px rgba(14, 165, 233, .25); }
.btn.primary:hover { filter: brightness(1.05); }
.btn.primary:active { filter: brightness(.95); }
.btn.ghost { background: transparent; color: #0ea5e9; border: 2px solid rgba(14, 165, 233, .4); }
.btn.ghost:hover { border-color: rgba(14, 165, 233, .7); }

.notice { margin-top: 4px; padding: 10px 12px; border-radius: 12px; border: 1px solid #e5e7eb; font-weight: 700; background: rgba(239, 68, 68, .06); border-color: rgba(239,68,68,.35); color: #7f1d1d; }
.muted.small { color: #64748b; font-size: 12px; margin-top: 10px; }

/* Footer */
.site-footer { margin-top: 24px; border-top: 1px solid #e5e7eb; padding: 16px 24px; }
.site-footer__inner { max-width: 720px; margin: 0 auto; display: flex; gap: 12px; align-items: center; justify-content: space-between; color: #475569; font-weight: 600; }
.site-footer__powered strong { color: #0ea5e9; }

/* Responsive */
@media (max-width: 600px) {
  .container { padding: 16px; }
  .site-footer__inner { flex-direction: column; gap: 6px; text-align: center; font-size: 13px; }
}
