@import url("/portal-fonts/general-sans.css");

/* Public BoltWright surfaces share the Office material and type system, with
   more room for people who do not use the product every day. */
:root {
  color-scheme: light;
  --on-dykem: #fff;
  --on-alarm: #fff;
  --on-warn: #fff;
  --on-ink: #fff;
  --ink-strong: #11151b;
  --ink: #151a22;
  --ink-soft: #343b46;
  --muted: #59616d;
  --disabled: #8d949e;
  --paper: #fafbfc;
  --white: #ffffff;
  --fill: #eef1f4;
  --fill-soft: #f5f7f9;
  --line: #d9dee5;
  --line-soft: #e9edf1;
  --line-strong: #8b95a1;
  --control-border: #737c87;
  --dykem: #1e3fae;
  --dykem-hover: #18348f;
  --dykem-soft: #edf1ff;
  --dykem-line: #adbae9;
  --ok: #176b48;
  --ok-soft: #e7f4ec;
  --warn: #875b00;
  --warn-soft: #fff5dc;
  --alarm: #983627;
  --alarm-soft: #fbf8f7;
  --font-sans: "General Sans", system-ui, sans-serif;
  --font-cond: var(--font-sans);
  --font-mono: var(--font-sans);
  --radius-1: 2px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --content-lg: 1160px;
  --content-xl: 1280px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.5 var(--font-sans);
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { border-radius: var(--radius-1); color: inherit; font: inherit; min-width: 0; }
a { color: var(--ink); }
h1, h2, h3, p, li, strong { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--ink-strong); font-weight: 600; }
strong { font-weight: 500; }
::selection { background: var(--dykem-soft); color: var(--ink); }
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, a:focus-visible {
  outline: 2px solid var(--dykem);
  outline-offset: 2px;
}

.public-wordmark { color: var(--ink-strong); font-size: 19px; font-weight: 600; letter-spacing: -.025em; }
.public-wordmark em { color: var(--dykem); font-style: normal; }
.public-environment { border-left: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 500; margin-left: 10px; padding-left: 10px; }
.public-kicker, .kicker, .section-label {
  color: var(--muted);
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.public-button, .btn {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-1);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  text-align: center;
  text-decoration: none;
}
.public-button.primary, .btn.primary { background: var(--dykem); border-color: var(--dykem); color: var(--on-dykem, var(--white)); }
.public-button:hover, .btn:hover { background: var(--fill); }
.public-button.primary:hover, .btn.primary:hover { background: var(--dykem-hover); border-color: var(--dykem-hover); }
.public-button:disabled, .btn:disabled { background: var(--fill); border-color: var(--line); color: var(--disabled); cursor: not-allowed; }
.public-notice, .notice { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--dykem); padding: 12px 14px; }

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