/* [project]/components/auth/auth.css [app-client] (css) */
:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --app-bg: 224 43% 3%;
  --app-bg-subtle: 222 35% 5%;
  --app-bg-elevated: 222 31% 7%;
  --surface: 222 28% 7%;
  --surface-raised: 221 25% 9%;
  --surface-card: 220 24% 10%;
  --surface-hover: 220 23% 13%;
  --surface-field: 224 33% 5%;
  --line: 219 22% 20%;
  --line-soft: 219 18% 17%;
  --line-strong: 218 22% 29%;
  --copy: 218 34% 96%;
  --copy-soft: 219 18% 79%;
  --copy-muted: 219 12% 61%;
  --copy-faint: 220 10% 47%;
  --copy-inverse: 224 43% 3%;
  --brand: 233 100% 68%;
  --brand-hover: 238 100% 72%;
  --brand-active: 229 91% 61%;
  --brand-soft: 241 79% 64%;
  --brand-faint: 232 72% 18%;
  --state-success: 158 50% 55%;
  --state-warning: 43 92% 62%;
  --state-danger: 3 76% 68%;
  --state-info: 211 95% 70%;
}

*, :before, :after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: hsl(var(--app-bg));
  min-height: 100%;
  color: hsl(var(--copy));
  text-rendering: geometricprecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: hsl(var(--copy));
  background: radial-gradient(circle at 8% -8%,
      hsl(var(--brand) / .16),
      transparent 31rem),
    radial-gradient(circle at 92% -12%,
      hsl(var(--brand-soft) / .09),
      transparent 35rem),
    linear-gradient(135deg, hsl(var(--app-bg)), hsl(var(--app-bg-subtle)));
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh !important;
}

button, input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.auth-page {
  isolation: isolate;
  place-items: center;
  padding: 24px;
  display: grid;
  position: relative;
  max-height: 100vh !important;
}

.auth-page:before {
  content: "";
  z-index: -2;
  opacity: .17;
  pointer-events: none;
  background-image: linear-gradient(hsl(var(--line-soft) / .33) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--line-soft) / .25) 1px, transparent 1px);
  background-size: 72px 72px;
  position: fixed;
  inset: 0;
  -webkit-mask-image: linear-gradient(#0000, #000 17% 76%, #0000);
  mask-image: linear-gradient(#0000, #000 17% 76%, #0000);
}

.auth-page:after {
  content: "";
  z-index: -1;
  background: hsl(var(--brand) / .09);
  filter: blur(120px);
  pointer-events: none;
  border-radius: 999px;
  width: 34rem;
  height: 34rem;
  position: fixed;
  bottom: -20rem;
  right: -14rem;
}

.auth-frame {
  border: 1px solid hsl(var(--line-soft) / .96);
  background: linear-gradient(180deg,
    hsl(var(--surface-card) / .81),
    hsl(var(--surface) / .84));
  width: min(1392px, 100vw - 48px);
  min-height: min(860px, 100vh - 48px);
  box-shadow: 0 36px 110px #00000085,
    inset 0 1px 0 hsl(var(--line-soft) / .72);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  grid-template-rows: 72px minmax(0, 1fr) 52px;
  display: grid;
  overflow: hidden;
}

.topbar {
  border-bottom: 1px solid hsl(var(--line-soft) / .78);
  background: hsl(var(--app-bg-elevated) / .42);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  display: flex;
}

.brand-lockup {
  align-items: center;
  gap: 17px;
  min-width: 0;
  text-decoration: none;
  display: inline-flex;
}

.brand-mark {
  object-fit: contain;
  filter: drop-shadow(0 8px 20px #00000059);
  width: 75px;
  height: 43px;
  display: block;
}

.brand-divider {
  background: hsl(var(--line-strong) / .72);
  width: 1px;
  height: 24px;
}

.brand-product {
  gap: 2px;
  min-width: 0;
  display: grid;
}

.brand-product strong {
  color: hsl(var(--copy));
  letter-spacing: -.025em;
  font-size: 13px;
  font-weight: 760;
  line-height: 16px;
}

.brand-product span {
  color: hsl(var(--copy-faint));
  font-family: var(--font-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 760;
  line-height: 12px;
}

.topbar-meta {
  color: hsl(var(--copy-faint));
  align-items: center;
  gap: 17px;
  font-size: 11px;
  font-weight: 650;
  line-height: 16px;
  display: flex;
}

.status {
  color: hsl(var(--copy-muted));
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.status-dot {
  background: hsl(var(--state-success));
  width: 7px;
  height: 7px;
  box-shadow: 0 0 15px hsl(var(--state-success) / .48);
  border-radius: 50%;
  position: relative;
}

.status-dot:after {
  content: "";
  border: 1px solid hsl(var(--state-success) / .24);
  border-radius: inherit;
  position: absolute;
  inset: -4px;
}

.topbar-separator {
  background: hsl(var(--line-soft));
  width: 1px;
  height: 18px;
}

.secure-label {
  white-space: nowrap;
  align-items: center;
  gap: 7px;
  display: inline-flex;
}

.secure-label svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 14px;
  height: 14px;
}

.auth-main {
  grid-template-columns: minmax(0, 1.16fr) minmax(460px, .84fr);
  min-height: 0;
  display: grid;
}

.context-panel {
  border-right: 1px solid hsl(var(--line-soft) / .82);
  background: radial-gradient(circle at 18% 16%,
      hsl(var(--brand) / .13),
      transparent 26rem),
    linear-gradient(145deg,
      hsl(var(--surface-card) / .62),
      hsl(var(--app-bg-elevated) / .44));
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: clamp(54px, 6vw, 88px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.context-panel:before {
  content: "";
  transform-origin: 0;
  background: linear-gradient(90deg,
    transparent,
    hsl(var(--brand) / .58),
    transparent);
  width: 55%;
  height: 1px;
  box-shadow: 0 0 28px hsl(var(--brand) / .18);
  position: absolute;
  bottom: 2%;
  left: -8%;
  transform: rotate(-13deg);
}

.context-watermark {
  opacity: .035;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  width: min(560px, 72%);
  position: absolute;
  top: 11%;
  right: -7%;
  transform: rotate(-6deg);
}

.context-copy {
  z-index: 1;
  max-width: 610px;
  padding-top: clamp(28px, 6vh, 74px);
  position: relative;
}

.eyebrow {
  color: hsl(var(--brand-hover));
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  font-size: 10px;
  font-weight: 760;
  line-height: 14px;
  display: inline-flex;
}

.eyebrow:before {
  content: "";
  background: hsl(var(--brand) / .8);
  width: 29px;
  height: 1px;
  box-shadow: 0 0 16px hsl(var(--brand) / .34);
}

.context-title {
  max-width: 610px;
  color: hsl(var(--copy));
  letter-spacing: -.078em;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 67px);
  font-weight: 850;
  line-height: .99;
}

.context-title span {
  color: hsl(var(--copy-soft));
  font-weight: 650;
  display: block;
}

.context-description {
  max-width: 515px;
  color: hsl(var(--copy-muted));
  letter-spacing: -.012em;
  margin: 25px 0 0;
  font-size: 15px;
  font-weight: 450;
  line-height: 25px;
}

.context-footer {
  z-index: 1;
  gap: 18px;
  max-width: 650px;
  display: grid;
  position: relative;
}

.scope-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.scope-chip {
  border: 1px solid hsl(var(--line-soft) / .83);
  background: hsl(var(--surface-raised) / .42);
  min-height: 29px;
  color: hsl(var(--copy-faint));
  font-family: var(--font-mono);
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: 7px;
  align-items: center;
  padding: 0 11px;
  font-size: 9px;
  font-weight: 760;
  display: inline-flex;
}

.access-note {
  max-width: 480px;
  color: hsl(var(--copy-faint));
  align-items: flex-start;
  gap: 11px;
  font-size: 11px;
  line-height: 17px;
  display: flex;
}

.access-note svg {
  width: 15px;
  height: 15px;
  color: hsl(var(--copy-muted));
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  margin-top: 1px;
}

.form-region {
  background: radial-gradient(circle at 100% 0%,
      hsl(var(--brand-soft) / .055),
      transparent 23rem),
    hsl(var(--app-bg-elevated) / .28);
  place-items: center;
  min-width: 0;
  padding: clamp(38px, 5vw, 70px);
  display: grid;
  position: relative;
}

.form-region:before {
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg,
    hsl(var(--surface-card) / .16),
    transparent 45%);
  position: absolute;
  inset: 0;
}

.auth-card {
  z-index: 1;
  border: 1px solid hsl(var(--line-soft) / .93);
  background: linear-gradient(180deg,
    hsl(var(--surface-card) / .91),
    hsl(var(--surface) / .86));
  width: min(100%, 452px);
  min-width: 0;
  box-shadow: 0 26px 80px #0000006b,
    inset 0 1px 0 hsl(var(--line-soft) / .72);
  border-radius: 15px;
  position: relative;
}

.auth-card:before {
  content: "";
  background: linear-gradient(90deg,
    transparent,
    hsl(var(--brand-hover) / .52),
    transparent);
  height: 1px;
  position: absolute;
  top: 0;
  left: 17px;
  right: 17px;
}

.auth-view {
  padding: 34px 34px 28px;
  animation: .34s cubic-bezier(.22, 1, .36, 1) both view-in;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateX(11px)scale(.995);
  }

  to {
    opacity: 1;
    transform: translateX(0)scale(1);
  }
}

.view-kicker {
  color: hsl(var(--brand-hover));
  font-family: var(--font-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 760;
  line-height: 14px;
}

.view-title {
  color: hsl(var(--copy));
  letter-spacing: -.058em;
  margin: 0;
  font-size: 31px;
  font-weight: 850;
  line-height: 37px;
}

.view-description {
  color: hsl(var(--copy-muted));
  letter-spacing: -.01em;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 20px;
}

.view-description strong {
  color: hsl(var(--copy-soft));
  font-weight: 650;
}

.form-stack {
  gap: 17px;
  margin-top: 29px;
  display: grid;
}

.field {
  gap: 8px;
  display: grid;
}

.field-label-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.field-label {
  color: hsl(var(--copy-faint));
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 760;
  line-height: 14px;
}

.remember-control {
  color: hsl(var(--copy-muted));
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  display: grid;
}

.remember-control input {
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.remember-control__box {
  border: 1px solid hsl(var(--line-strong) / .9);
  background: hsl(var(--surface-field) / .78);
  width: 18px;
  height: 18px;
  box-shadow: inset 0 1px 0 hsl(var(--line-soft) / .52);
  border-radius: 5px;
}

.remember-control__box:after {
  content: "";
  border: solid hsl(var(--copy-inverse));
  opacity: 0;
  border-width: 0 2px 2px 0;
  width: 6px;
  height: 10px;
  margin: 2px 0 0 5px;
  display: block;
  transform: rotate(45deg)scale(.75);
}

.remember-control input:checked + .remember-control__box {
  border-color: hsl(var(--brand-hover));
  background: hsl(var(--brand-hover));
  box-shadow: 0 0 0 3px hsl(var(--brand-hover) / .16);
}

.remember-control input:checked + .remember-control__box:after {
  opacity: 1;
  transform: rotate(45deg)scale(1);
}

.remember-control input:focus-visible + .remember-control__box {
  outline: 3px solid hsl(var(--brand) / .24);
  outline-offset: 3px;
}

.remember-control__copy {
  min-width: 0;
}

.text-link {
  appearance: none;
  color: hsl(var(--copy-muted));
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 650;
  line-height: 15px;
  text-decoration: none;
  transition: color .16s cubic-bezier(.22, 1, .36, 1);
}

.text-link:hover {
  color: hsl(var(--copy));
}

.text-link:focus-visible {
  outline: 2px solid hsl(var(--brand) / .72);
  outline-offset: 4px;
  border-radius: 3px;
}

.control-wrap {
  position: relative;
}

.control-icon {
  width: 17px;
  height: 17px;
  color: hsl(var(--copy-faint));
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75px;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transition: color .16s cubic-bezier(.22, 1, .36, 1);
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.field-control {
  border: 1px solid hsl(var(--line-soft) / .94);
  background: linear-gradient(180deg,
    hsl(var(--surface-field) / .96),
    hsl(var(--app-bg-elevated) / .9));
  width: 100%;
  min-height: 47px;
  color: hsl(var(--copy));
  letter-spacing: -.01em;
  caret-color: hsl(var(--brand-hover));
  border-radius: 9px;
  outline: 0;
  padding: 0 45px 0 43px;
  font-size: 13px;
  font-weight: 520;
  line-height: 20px;
  transition: border-color .16s cubic-bezier(.22, 1, .36, 1), box-shadow .16s cubic-bezier(.22, 1, .36, 1), background .16s cubic-bezier(.22, 1, .36, 1);
}

.field-control::placeholder {
  color: hsl(var(--copy-faint));
  font-weight: 450;
}

.field-control:hover {
  border-color: hsl(var(--line-strong) / .82);
}

.field-control:focus {
  border-color: hsl(var(--brand) / .72);
  box-shadow: 0 0 0 4px hsl(var(--brand) / .14);
  background: hsl(var(--surface-field) / .98);
}

.control-wrap:focus-within .control-icon {
  color: hsl(var(--brand-hover));
}

.field-control[aria-invalid="true"] {
  border-color: hsl(var(--state-danger) / .78);
  box-shadow: 0 0 0 4px hsl(var(--state-danger) / .1);
}

.password-toggle {
  width: 34px;
  height: 34px;
  color: hsl(var(--copy-faint));
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 7px;
  place-items: center;
  transition: color .16s, background .16s;
  display: grid;
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}

.password-toggle:hover {
  color: hsl(var(--copy-soft));
  background: hsl(var(--surface-hover) / .65);
}

.password-toggle:focus-visible {
  outline: 2px solid hsl(var(--brand) / .72);
  outline-offset: 1px;
}

.password-toggle svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 17px;
  height: 17px;
}

.form-message {
  border: 1px solid hsl(var(--state-danger) / .34);
  background: hsl(var(--state-danger) / .07);
  min-height: 38px;
  color: hsl(var(--state-danger));
  border-radius: 8px;
  align-items: flex-start;
  gap: 9px;
  margin-top: 1px;
  padding: 10px 11px;
  font-size: 11px;
  font-weight: 520;
  line-height: 16px;
  display: none;
}

.form-message.is-visible {
  display: flex;
}

.form-message.is-success {
  border-color: hsl(var(--state-success) / .36);
  background: hsl(var(--state-success) / .08);
  color: hsl(var(--state-success));
}

.form-message svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 1px;
}

.button-primary {
  border: 1px solid hsl(var(--brand-hover) / .52);
  background: linear-gradient(135deg,
    hsl(var(--brand-active)),
    hsl(var(--brand)) 58%,
    hsl(var(--brand-hover)));
  width: 100%;
  min-height: 47px;
  color: hsl(var(--copy));
  letter-spacing: -.012em;
  box-shadow: 0 14px 34px hsl(var(--brand) / .21);
  cursor: pointer;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 760;
  line-height: 18px;
  transition: transform .18s cubic-bezier(.22, 1, .36, 1), filter .18s cubic-bezier(.22, 1, .36, 1), box-shadow .18s cubic-bezier(.22, 1, .36, 1), opacity .18s;
  display: inline-flex;
}

.button-primary:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 17px 40px hsl(var(--brand) / .28);
  transform: translateY(-1px);
}

.button-primary:active:not(:disabled) {
  transform: translateY(0);
}

.button-primary:focus-visible {
  box-shadow: 0 0 0 4px hsl(var(--brand) / .18),
    0 14px 34px hsl(var(--brand) / .21);
  outline: 0;
}

.button-primary:disabled {
  opacity: .46;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
  transform: none;
}

.button-primary svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 16px;
  height: 16px;
}

.card-security {
  border-top: 1px solid hsl(var(--line-soft) / .68);
  color: hsl(var(--copy-faint));
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  font-size: 10.5px;
  line-height: 16px;
  display: flex;
}

.card-security svg {
  width: 15px;
  height: 15px;
  color: hsl(var(--copy-muted));
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  margin-top: 1px;
}

.back-button {
  color: hsl(var(--copy-faint));
  cursor: pointer;
  background: none;
  border: 0;
  align-items: center;
  gap: 7px;
  margin: -3px 0 20px;
  padding: 0;
  font-size: 11px;
  font-weight: 650;
  line-height: 16px;
  transition: color .16s;
  display: inline-flex;
}

.back-button:hover {
  color: hsl(var(--copy));
}

.back-button:focus-visible {
  outline: 2px solid hsl(var(--brand) / .72);
  outline-offset: 5px;
  border-radius: 3px;
}

.back-button svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 14px;
  height: 14px;
}

.identity-chip {
  border: 1px solid hsl(var(--line-soft) / .88);
  background: hsl(var(--surface-raised) / .54);
  max-width: 100%;
  min-height: 29px;
  color: hsl(var(--copy-muted));
  border-radius: 7px;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 650;
  line-height: 15px;
  display: inline-flex;
}

.identity-chip svg {
  width: 13px;
  height: 13px;
  color: hsl(var(--brand-hover));
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.identity-chip span {
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.mfa-mode-switch {
  border: 1px solid hsl(var(--line-soft) / .82);
  background: hsl(var(--surface-field) / .68);
  border-radius: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 22px;
  padding: 4px;
  display: grid;
}

.mfa-mode-button {
  min-width: 0;
  height: 34px;
  color: hsl(var(--copy-faint));
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 760;
  line-height: 14px;
  transition: background .16s, color .16s, box-shadow .16s;
}

.mfa-mode-button:hover {
  color: hsl(var(--copy-muted));
}

.mfa-mode-button.is-active {
  background: hsl(var(--surface-raised));
  color: hsl(var(--copy));
  box-shadow: 0 1px 7px hsl(var(--shadow) / .08);
}

.mfa-mode-button:focus-visible {
  outline: 2px solid hsl(var(--brand) / .72);
  outline-offset: 2px;
}

.code-fieldset {
  border: 0;
  min-width: 0;
  margin: 18px 0 0;
  padding: 0;
}

.code-fieldset legend {
  width: 100%;
  color: hsl(var(--copy-faint));
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 760;
  line-height: 14px;
}

.code-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
  display: grid;
}

.code-input {
  aspect-ratio: 1 / 1.05;
  border: 1px solid hsl(var(--line-soft) / .94);
  background: linear-gradient(180deg,
    hsl(var(--surface-field) / .97),
    hsl(var(--app-bg-elevated) / .9));
  width: 100%;
  min-width: 0;
  color: hsl(var(--copy));
  text-align: center;
  font-family: var(--font-mono);
  caret-color: hsl(var(--brand-hover));
  border-radius: 9px;
  outline: 0;
  font-size: 20px;
  font-weight: 760;
  line-height: 1;
  transition: border-color .16s, box-shadow .16s, transform .18s cubic-bezier(.22, 1, .36, 1);
}

.code-input:hover {
  border-color: hsl(var(--line-strong) / .82);
}

.code-input:focus {
  border-color: hsl(var(--brand) / .78);
  box-shadow: 0 0 0 4px hsl(var(--brand) / .14);
  transform: translateY(-1px);
}

.code-input.is-filled {
  border-color: hsl(var(--brand) / .46);
  background: linear-gradient(180deg,
    hsl(var(--brand-faint) / .42),
    hsl(var(--surface-field) / .96));
}

.code-help {
  color: hsl(var(--copy-faint));
  align-items: center;
  gap: 7px;
  margin: 10px 0 0;
  font-size: 10.5px;
  line-height: 16px;
  display: inline-flex;
}

.code-help strong {
  color: hsl(var(--copy-soft));
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 760;
  line-height: 16px;
}

.recovery-control {
  width: 100%;
}

.recovery-input {
  font-family: var(--font-mono);
  letter-spacing: 0;
  text-transform: uppercase;
  padding-left: 14px;
}

.mfa-actions {
  gap: 14px;
  margin-top: 22px;
  display: grid;
}

.support-row {
  color: hsl(var(--copy-faint));
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  line-height: 16px;
  display: flex;
}

.support-row .text-link {
  color: hsl(var(--copy-muted));
  font-size: inherit;
}

.support-callout {
  border: 1px solid hsl(var(--line-soft) / .9);
  background: radial-gradient(circle at 0% 0%,
      hsl(var(--brand) / .11),
      transparent 12rem),
    linear-gradient(180deg,
      hsl(var(--surface-raised) / .62),
      hsl(var(--surface-field) / .54));
  box-shadow: inset 0 1px 0 hsl(var(--line-soft) / .56);
  border-radius: 10px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  margin-top: 27px;
  padding: 16px;
  display: grid;
}

.support-callout-icon {
  border: 1px solid hsl(var(--brand) / .32);
  background: hsl(var(--brand-faint) / .52);
  width: 42px;
  height: 42px;
  color: hsl(var(--brand-hover));
  border-radius: 9px;
  place-items: center;
  display: grid;
}

.support-callout-icon svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 19px;
  height: 19px;
}

.support-callout-copy {
  align-content: start;
  min-width: 0;
  display: grid;
}

.support-callout-label {
  color: hsl(var(--copy-faint));
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 760;
  line-height: 13px;
}

.support-email {
  overflow-wrap: anywhere;
  width: fit-content;
  max-width: 100%;
  color: hsl(var(--copy));
  letter-spacing: -.015em;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 760;
  line-height: 18px;
  text-decoration: none;
  transition: color .16s cubic-bezier(.22, 1, .36, 1);
}

.support-email:hover {
  color: hsl(var(--brand-hover));
}

.support-email:focus-visible {
  outline: 2px solid hsl(var(--brand) / .72);
  outline-offset: 4px;
  border-radius: 3px;
}

.support-callout-copy p {
  color: hsl(var(--copy-faint));
  margin: 8px 0 0;
  font-size: 10.5px;
  line-height: 16px;
}

.support-email-button {
  margin-top: 20px;
  text-decoration: none;
}

.support-security {
  margin-top: 22px;
}

.frame-footer {
  border-top: 1px solid hsl(var(--line-soft) / .72);
  background: hsl(var(--app-bg) / .31);
  color: hsl(var(--copy-faint));
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-size: 9.5px;
  font-weight: 520;
  line-height: 14px;
  display: flex;
}

.footer-links {
  align-items: center;
  gap: 16px;
  display: flex;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color .16s;
}

.footer-link:hover {
  color: hsl(var(--copy-soft));
}

.footer-version {
  font-family: var(--font-mono);
  letter-spacing: .035em;
}

@media (max-width: 980px) {
  .auth-frame {
    grid-template-rows: 68px minmax(0, 1fr) 48px;
    min-height: min(820px, 100vh - 32px);
  }

  .auth-main {
    grid-template-columns: 1fr;
  }

  .context-panel {
    display: none;
  }

  .form-region {
    padding: 42px 24px;
  }
}

@media (max-width: 620px) {
  .auth-page {
    padding: 0;
  }

  .auth-frame {
    border: 0;
    border-radius: 0;
    width: 100%;
    min-height: 100vh;
  }

  .topbar {
    padding: 0 17px;
  }

  .brand-mark {
    width: 64px;
    height: 37px;
  }

  .brand-divider, .brand-product span, .topbar-separator, .secure-label {
    display: none;
  }

  .topbar-meta {
    gap: 0;
  }

  .form-region {
    padding: 28px 14px;
  }

  .auth-card {
    border-radius: 13px;
  }

  .auth-view {
    padding: 28px 21px 24px;
  }

  .view-title {
    font-size: 28px;
    line-height: 34px;
  }

  .code-grid {
    gap: 6px;
  }

  .code-input {
    border-radius: 8px;
    font-size: 18px;
  }

  .frame-footer {
    padding: 0 17px;
  }

  .footer-links {
    display: none;
  }
}

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

/*# sourceMappingURL=components_auth_auth_0a13eng.css.map*/