:root {
  color-scheme: light;
  --font-ui: "Inter", "Segoe UI", sans-serif;
  --blue: #0b5de8;
  --blue-hover: #084fcc;
  --blue-active: #0646b8;
  --blue-dark: #1457d9;
  --navy: #071a3a;
  --muted: #4b5f78;
  --muted-2: #4b5f78;
  --teal: #0a766b;
  --purple: #7357e8;
  --error: #b42318;
  --border: #dde6f0;
  --input-border: #ccd8e6;
  --page: #f5f9ff;
  --card: #ffffff;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --control-min: 48px;
  --control-min-large: 54px;
  --shadow: 0 24px 60px rgba(13, 36, 70, 0.14);
  --preview-shadow: 0 18px 45px rgba(13, 36, 70, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-ui);
  color: var(--navy);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(11, 93, 232, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(14, 159, 143, 0.06),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--page) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 90px 0 0;
  pointer-events: none;
  opacity: 0.055;
  background:
    linear-gradient(
      115deg,
      transparent 0 45%,
      #071a3a 45% 45.4%,
      transparent 45.4%
    ),
    linear-gradient(
      25deg,
      transparent 0 58%,
      #0b5de8 58% 58.35%,
      transparent 58.35%
    ),
    linear-gradient(90deg, rgba(7, 26, 58, 0.5) 1px, transparent 1px),
    linear-gradient(rgba(7, 26, 58, 0.5) 1px, transparent 1px);
  background-size:
    340px 260px,
    310px 240px,
    58px 58px,
    58px 58px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
}

svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 14px;
}

.login-logo:focus-visible,
.header-help:focus-visible,
.form-row a:focus-visible,
.reset-help a:focus-visible,
.reset-back a:focus-visible,
.login-footer a:focus-visible {
  border-radius: 8px;
  box-shadow: 0 0 0 4px rgba(11, 93, 232, 0.14);
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.login-page {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  min-height: 100vh;
}

.login-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 48px;
  border-bottom: 1px solid #e4eaf3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.login-logo,
.card-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-weight: 800;
}

.login-logo {
  font-size: 1.6rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eaf2ff;
  color: var(--blue);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-help {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.header-help:hover,
.login-footer a:hover,
.form-row a:hover,
.access-request-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.login-main {
  width: min(1200px, 100%);
  max-width: 100%;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  align-items: center;
  gap: 84px;
  margin: 0 auto;
  padding: 72px 40px 48px;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #d6e7ff;
  border-radius: 999px;
  background: #f0f6ff;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-badge span,
.benefit-icon,
.lock-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.security-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.brand-panel h1 {
  max-width: 620px;
  margin-top: 24px;
  color: var(--navy);
  font-size: clamp(3.2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.brand-panel,
.login-column,
.login-card,
.login-card__main,
.mini-preview {
  min-width: 0;
}

.brand-panel h1 span {
  color: var(--blue);
}

.brand-copy {
  max-width: 500px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.benefit-list {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.benefit-icon--blue {
  border: 1px solid #d6e7ff;
  background: #eef5ff;
  color: var(--blue);
}

.benefit-icon--teal {
  border: 1px solid #cdefea;
  background: #ecfaf7;
  color: var(--teal);
}

.benefit-icon--purple {
  border: 1px solid #e0d8ff;
  background: #f4f0ff;
  color: var(--purple);
}

.benefit-item h2 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.benefit-item p {
  max-width: 390px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.mini-preview {
  width: min(520px, 100%);
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--preview-shadow);
}

.mini-appbar {
  display: grid;
  grid-template-columns: auto repeat(4, auto) minmax(120px, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #e7eef7;
  color: #4f627c;
  font-size: 0.66rem;
  font-weight: 800;
}

.mini-appbar strong {
  color: var(--blue);
}

.mini-appbar span,
.mini-appbar div,
.mini-chip-row span {
  border-radius: 8px;
  white-space: nowrap;
}

.mini-appbar span {
  padding: 6px 7px;
}

.mini-appbar span:first-of-type,
.mini-chip-row .active {
  background: var(--blue);
  color: #fff;
}

.mini-appbar div {
  min-width: 0;
  overflow: hidden;
  padding: 7px 9px;
  background: #f5f8fc;
  color: #8a9ab0;
  text-overflow: ellipsis;
}

.mini-body {
  padding: 12px;
  background: #f7faff;
}

.mini-map-panel {
  padding: 10px;
  border: 1px solid #e2eaf5;
  border-radius: 13px;
  background: #fff;
}

.mini-panel-head p {
  color: #63758d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-panel-head h2 {
  margin-top: 4px;
  font-size: 1rem;
}

.mini-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.mini-chip-row span {
  padding: 7px 9px;
  background: #f2f6fb;
  color: #445873;
  font-size: 0.64rem;
  font-weight: 800;
}

.mini-map {
  overflow: hidden;
  margin-top: 12px;
  border-radius: 12px;
  background: #eef6ff;
}

.mini-map svg {
  width: 100%;
  height: auto;
}

.mini-map rect:first-child {
  fill: #eef6ff;
}

.mini-road,
.mini-water,
.mini-sewer {
  fill: none;
  stroke-linecap: round;
}

.mini-road {
  stroke: #fff;
  stroke-width: 18;
}

.mini-road-secondary {
  stroke: #dfeaf6;
  stroke-width: 12;
}

.mini-water {
  stroke: var(--teal);
  stroke-width: 5;
}

.mini-sewer {
  stroke: var(--purple);
  stroke-dasharray: 11 8;
  stroke-width: 5;
}

.mini-marker circle {
  stroke: #fff;
  stroke-width: 4;
}

.mini-marker path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mini-blue circle {
  fill: var(--blue);
}

.mini-teal circle {
  fill: var(--teal);
}

.mini-red circle {
  fill: #f43f5e;
}

.mini-purple circle {
  fill: var(--purple);
}

.mini-zoom rect {
  fill: #fff;
  stroke: #d7e3f0;
}

.mini-zoom text {
  fill: var(--navy);
  font-size: 18px;
  font-weight: 800;
  text-anchor: middle;
}

.login-column {
  min-width: 0;
}

.login-card {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.login-card__main {
  padding: 48px 48px 40px;
}

.card-brand {
  justify-content: center;
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.card-head {
  text-align: center;
}

.card-head h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.card-head p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.form-alert {
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 45, 32, 0.22);
  border-radius: var(--radius-md);
  background: #fff3f2;
  color: var(--error);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.environment-notice {
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid #d6e7ff;
  border-radius: 10px;
  background: #f4f8ff;
  color: #33445f;
  font-size: 0.88rem;
  line-height: 1.45;
}

.environment-notice strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.environment-notice.is-local {
  border-color: #cfe6ff;
  background: #f2f8ff;
}

.environment-notice.is-unavailable {
  border-color: #f6d7aa;
  background: #fff8ed;
}

.form-alert--success {
  border-color: rgba(14, 159, 143, 0.24);
  background: #eefaf7;
  color: #087f73;
}

.field-group {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.field-group label {
  display: block;
  margin: 0;
  color: #33445f;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.field-group input {
  width: 100%;
  min-height: var(--control-min-large);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--navy);
  font-size: 1rem;
  padding: 0 14px;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.field-group:focus-within label {
  color: var(--blue);
}

.field-group input::placeholder {
  color: #93a3b8;
}

.field-group input:focus,
.password-toggle:focus-visible,
.btn:focus-visible,
.remember-check input:focus-visible,
.access-request-link:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(11, 93, 232, 0.14);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.field-group input[aria-invalid="true"] {
  border-color: var(--error);
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.1);
}

.field-group:has(input[aria-invalid="true"]) label {
  color: var(--error);
}

.field-group input:disabled {
  cursor: not-allowed;
  background: #f3f6fa;
  color: #7a8ca5;
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.field-error:not(:empty) {
  padding: 8px 10px;
  border: 1px solid rgba(180, 35, 24, 0.28);
  border-radius: var(--radius-sm);
  background: #fff1f0;
}

.password-shell {
  position: relative;
}

.password-shell input {
  padding-right: 82px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  min-width: 62px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: #f5f8fc;
  color: #51617a;
  font-size: 0.9rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.password-toggle:disabled {
  cursor: not-allowed;
  background: #eef2f7;
  color: #7a8ca5;
  opacity: 0.78;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.remember-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #33445f;
  font-size: 0.94rem;
  font-weight: 600;
}

.remember-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.form-row a,
.access-request-link {
  color: var(--blue);
  font-size: 0.94rem;
  font-weight: 750;
}

.btn {
  width: 100%;
  min-height: var(--control-min-large);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 800;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.btn-primary {
  margin-top: 24px;
  border: 1px solid var(--blue-hover);
  background: var(--blue-hover);
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 93, 232, 0.24);
}

.btn-primary:hover {
  background: var(--blue-hover);
}

.btn-primary:active {
  background: var(--blue-active);
  transform: translateY(1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.button-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 999px;
  animation: spin 0.75s linear infinite;
}

.login-card.is-loading #login-submit .button-spinner,
.login-card.is-reset-loading #reset-submit .button-spinner {
  display: block;
}

.btn-sso {
  margin-top: 14px;
  border: 1px solid #cbd7e6;
  background: #fff;
  color: var(--navy);
}

.btn-secondary,
.btn-ghost {
  border: 1px solid #cbd7e6;
  background: #ffffff;
  color: var(--navy);
  box-shadow: none;
}

.btn-danger,
.btn-destructive {
  border: 1px solid rgba(180, 35, 24, 0.32);
  background: #fff1f0;
  color: #a32018;
  box-shadow: none;
}

.btn-sso.is-coming-soon,
.btn-sso:disabled {
  border-color: #d4dfec;
  background: #f8fbff;
  color: #53657d;
  box-shadow: none;
  opacity: 1;
}

.btn-sso:hover {
  background: #f5f9ff;
}

.btn-sso.is-coming-soon:hover,
.btn-sso:disabled:hover {
  background: #f8fbff;
}

.btn-sso svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sso-note {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
  color: var(--muted-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e1e8f0;
}

.access-request-card {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #dce7f5;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--muted-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.access-request-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.access-request-card p {
  margin-top: 6px;
}

.access-request-card ul {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding-left: 18px;
}

.access-request-card li {
  padding-left: 2px;
}

.access-request-link {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.reset-panel .card-head p {
  max-width: 360px;
  margin-right: auto;
  margin-left: auto;
}

.reset-help,
.reset-back {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.reset-help a,
.reset-back a {
  color: var(--blue);
  font-weight: 800;
}

.reset-back {
  margin-top: 12px;
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 48px;
  border-top: 1px solid #e7eef7;
  background: #fbfdff;
}

.lock-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #d6e7ff;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
}

.lock-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.security-note h3 {
  color: #33445f;
  font-size: 1rem;
  font-weight: 800;
}

.security-note p {
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 0.92rem;
  line-height: 1.5;
}

.login-footer {
  margin-top: 28px;
  color: #7a8ca5;
  font-size: 0.86rem;
  text-align: center;
}

.login-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 10px;
}

.login-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: var(--muted-2);
}

.login-footer span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.login-footer p {
  margin-top: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .login-main {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    gap: 48px;
  }

  .brand-panel h1 {
    font-size: clamp(2.7rem, 4.8vw, 3.35rem);
  }
}

@media (max-width: 840px) {
  .login-header {
    height: 76px;
    padding: 0 24px;
  }

  .login-main {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 28px 16px 40px;
  }

  .login-column {
    order: 1;
  }

  .brand-panel {
    order: 2;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }

  .login-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .security-badge,
  .brand-copy,
  .benefit-list {
    display: none;
  }

  .brand-panel h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    font-size: 0;
    line-height: 0;
    white-space: nowrap;
  }

  .mini-preview {
    width: min(560px, 100%);
    display: block;
    margin: 0 auto;
  }

  .mini-appbar {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 6px;
    padding: 10px;
  }

  .mini-appbar span:nth-of-type(2),
  .mini-appbar span:nth-of-type(3),
  .mini-appbar span:nth-of-type(4) {
    display: none;
  }

  .mini-appbar span,
  .mini-appbar div {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  .mini-body {
    padding: 10px;
  }

  .mini-map-panel {
    padding: 9px;
  }
}

@media (max-width: 560px) {
  .login-header {
    height: 68px;
    padding: 0 12px;
  }

  .login-logo {
    font-size: 1.28rem;
  }

  .header-help {
    display: none;
  }

  .login-card__main {
    padding: 26px 16px 24px;
  }

  .card-brand {
    margin-bottom: 24px;
  }

  .card-head h2 {
    font-size: 1.82rem;
  }

  .form-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .form-row a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .btn {
    height: auto;
    min-height: 54px;
    padding: 12px 14px;
    line-height: 1.2;
    white-space: normal;
  }

  .divider {
    margin: 22px 0 16px;
  }

  .access-request-card {
    margin-top: 16px;
    padding: 14px;
  }

  .security-note {
    gap: 12px;
    padding: 22px 16px;
  }

  .lock-icon {
    width: 44px;
    height: 44px;
  }

  .mini-preview {
    border-radius: 14px;
  }

  .mini-appbar {
    font-size: 0.6rem;
  }

  .mini-chip-row {
    gap: 6px;
  }

  .mini-chip-row span {
    padding: 6px 7px;
    font-size: 0.58rem;
  }

  .login-footer nav {
    gap: 0 6px;
  }
}

@media (max-width: 380px) {
  .login-main {
    padding: 18px 10px 30px;
  }

  .login-card {
    border-radius: 16px;
  }

  .login-card__main {
    padding: 24px 14px 22px;
  }

  .card-brand {
    margin-bottom: 22px;
  }

  .password-shell input {
    padding-right: 76px;
  }

  .password-toggle {
    right: 6px;
    min-width: 58px;
    font-size: 0.84rem;
  }

  .mini-appbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .mini-appbar span:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contrast hardening for login and access forms. */
.card-head p,
.login-benefit p,
.access-request-card,
.access-request-card p,
.reset-help,
.reset-help p,
.login-footer,
.login-footer a,
.security-note,
.field-hint,
.environment-note,
.microsoft-note {
  color: var(--muted);
}

.field-hint,
.reset-help,
.microsoft-note,
.environment-note {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.field-group input::placeholder,
.reset-panel input::placeholder {
  color: #4b5f78;
  opacity: 1;
}

.field-error,
.form-alert {
  color: var(--error);
}

.form-alert {
  background: #fff1f0;
  border-color: rgba(180, 35, 24, 0.28);
}

.form-alert--success {
  color: #0b6f3a;
  background: #ecfdf3;
  border-color: rgba(15, 122, 67, 0.28);
}

.btn-primary {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  color: #ffffff;
}

.btn-secondary,
.btn-sso,
.btn-sso.is-coming-soon {
  color: var(--navy);
  background: #ffffff;
  border-color: #cbd7e6;
}

.btn-sso.is-coming-soon,
button[disabled] {
  color: #4b5f78;
  background: #eef2f7;
  opacity: 1;
}

/* Mobile touch target audit. */
@media (max-width: 560px) {
  button,
  .btn,
  .btn-sso,
  .password-toggle,
  .remember-check,
  .form-row a,
  .access-request-link,
  .login-footer a,
  .header-help {
    min-height: 44px;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-sso {
    min-height: 54px;
  }

  .password-toggle {
    min-width: 58px;
  }
}
