/* Login wall. Deliberately self-contained and tiny: it is the first thing the
   client loads, it must not depend on the portal's stylesheet, and it should
   render correctly before the webfont arrives. Colours mirror the brand tokens in
   portal.css. */
:root{
  --forest:#1F4317; --cream:#F5F1EA; --gold:#FBE346; --pine:#0A2601;
}
*{margin:0;padding:0;box-sizing:border-box;}
body{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  background:var(--forest);color:var(--cream);padding:24px;
  font-family:Archivo,system-ui,-apple-system,sans-serif;
}
form{
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.16);
  border-radius:22px;padding:38px 34px;width:100%;max-width:380px;
}
.mark{height:18px;width:auto;display:block;margin-bottom:22px;opacity:.9;}
h1{font-size:19px;margin:0 0 6px;font-weight:800;}
p{font-size:13.5px;color:rgba(245,241,234,.6);margin:0 0 22px;font-weight:400;}
input{
  width:100%;padding:13px 15px;border-radius:999px;
  border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.08);
  color:var(--cream);font-size:15px;font-family:inherit;
}
input:focus-visible{outline:2px solid var(--gold);outline-offset:2px;}
button{
  width:100%;margin-top:12px;padding:13px;border:0;border-radius:999px;
  background:var(--gold);color:var(--pine);font-weight:800;font-size:14px;
  cursor:pointer;font-family:inherit;
}
button:hover{filter:brightness(1.06);}
button:focus-visible{outline:2px solid var(--cream);outline-offset:2px;}
.erro{color:var(--gold);font-size:13px;margin-top:14px;font-weight:700;}

/* Visible to screen readers only: the input has a placeholder, but a placeholder
   is not a label. */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
