/* Base only — the views carry the design's inline styles verbatim, matching the
   prototype exactly. Ported from the prototype's <style> block. */
body {
  margin: 0;
  background: #f4f1ea;
  font-family: 'Public Sans', system-ui, sans-serif;
  color: #1b2a3d;
}
a { color: #1f3a5f; }
a:hover { color: #b9912f; }
input, select, textarea, button { font-family: 'Public Sans', system-ui, sans-serif; }
input:focus, select:focus, textarea:focus { outline: 2px solid #b9912f; outline-offset: 1px; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #d8d2c2; border-radius: 6px; }

/* Login hero */
.login-wrap {
  min-height: 100vh;
  background: linear-gradient(160deg, #16293f 0%, #0f1e30 70%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; box-sizing: border-box;
}
