@font-face {
  font-family: TaskSystem;
  src: local("Inter"), local("SF Pro Text"), local("Arial");
  font-display: swap;
}
:root {
  font-family: TaskSystem, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #242a2c;
  background: #fff;
  font-size: 17px;
  line-height: 1.5;
  --ink: #242a2c;
  --muted: #687175;
  --line: #e2e6e5;
  --green: #176b52;
  --soft: #f6f8f7;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
}
button {
  font: inherit;
  cursor: pointer;
  outline-offset: 4px;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
*:focus-visible {
  outline: 3px solid #358875;
}
h1,
p {
  margin-top: 0;
}
h1 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
small,
.small {
  font-size: 14px;
}
.muted {
  color: var(--muted);
}
.login-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px 16px max(24px, env(safe-area-inset-bottom));
}
.login-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border: 1px solid #dde5dd;
  border-radius: 12px;
  padding: 34px 32px 28px;
  box-shadow: 0 12px 40px #24382610;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 28px;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.9px;
  color: var(--green);
  margin-bottom: 11px;
  text-transform: uppercase;
}
.actions {
  margin: 22px 0 8px;
}
.actions[hidden] {
  display: none;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: white;
  color: #3f4b46;
  border: 1px solid #ccd5cf;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 650;
  min-height: 40px;
}
.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.button.primary:hover {
  background: #135c46;
}
.button.large {
  width: 100%;
  min-height: 52px;
  font-size: 17px;
}
.callout {
  padding: 14px 17px;
  border-left: 3px solid #4c9270;
  background: #f0f6ef;
  border-radius: 0 6px 6px 0;
  margin: 18px 0;
  overflow-wrap: anywhere;
}
.callout[hidden] {
  display: none;
}
.callout.warning {
  border-color: #bd8644;
  background: #fcf4e9;
}
.callout.error {
  border-color: #b8564a;
  background: #fbeeec;
}
.callout p:last-child {
  margin-bottom: 0;
}
.footnote {
  margin: 18px 0 0;
}
@media (max-width: 480px) {
  .login-card {
    padding: 26px 20px 22px;
  }
  h1 {
    font-size: 26px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none;
  }
}
