/* Trackzo — shared base styles (ported from inc/header.php + login.php) */
body {
  font-family: 'Inter', sans-serif;
  background: #F1F5F9;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
}
.font-display { font-family: 'Plus Jakarta Sans', sans-serif; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 999px; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

.sidebar-grad {
  background: linear-gradient(180deg, #0B1F3A 0%, #0F2B4C 100%);
  box-shadow: 4px 0 24px rgba(0, 0, 0, .18);
}
#sidebar { width: 240px; }

/* Desktop icon-rail collapse (only applies >=1024px) */
@media (min-width: 1024px) {
  #sidebar.is-collapsed { width: 72px; }
  #sidebar.is-collapsed .sb-label { display: none; }
}

/* Login form fields */
.fld {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #334155;
  background: #f8fafc;
}
.fld:focus { outline: none; border-color: #60a5fa; box-shadow: 0 0 0 3px #bfdbfe; }
