/* 21st: Login Page 2 (id 19028) shell + shadcn Accordion with icons (id 698). */

@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/figtree-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/figtree-latin-700-normal.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --bg: #f4f4f5;
  --card: #ffffff;
  --muted: #f4f4f5;
  --fg: #18181b;
  --fg-muted: #71717a;
  --line: #e4e4e7;
  --primary: #18181b;
  --on-primary: #fafafa;
  --radius: 0.75rem;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
  color-scheme: light;
  background: var(--bg);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

.shell {
  display: flex;
  min-height: 100dvh;
  box-sizing: border-box;
  padding:
    calc(1.5rem + env(safe-area-inset-top, 0px))
    max(1rem, env(safe-area-inset-right, 0px))
    calc(1.5rem + env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-left, 0px));
}

.card {
  margin: auto;
  width: 100%;
  max-width: 24rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.125rem);
  background: var(--muted);
  box-shadow: 0 4px 6px -1px rgb(24 24 27 / 0.06), 0 2px 4px -2px rgb(24 24 27 / 0.05);
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

@starting-style {
  .card {
    opacity: 0;
    transform: scale(0.95) translateY(8px);
  }
}

.card-body {
  margin: -1px;
  padding: 2rem 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.125rem);
  background: var(--card);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.mark {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  flex-shrink: 0;
  color: var(--fg);
  transform-origin: 50% 50%;
}

.mark.is-blinking {
  animation: osethBlink 110ms var(--ease-in-out);
}

@keyframes osethBlink {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.045);
  }
}

h1 {
  margin: 1rem 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.for,
.lede {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-align: center;
}

.lede {
  margin-top: 1rem;
}

.meta {
  margin: 1.5rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.8125rem;
}

.meta-row + .meta-row {
  border-top: 1px solid var(--line);
}

.meta-row span:first-child {
  color: var(--fg-muted);
  flex-shrink: 0;
}

.meta-row span:last-child {
  font-weight: 600;
  text-align: right;
  overflow-wrap: anywhere;
}

.acc {
  margin: 0.5rem 0 1.5rem;
}

.acc-item {
  border-bottom: 1px solid var(--line);
}

.acc-sum {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.85rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transform: scale(1);
  transition: transform 160ms var(--ease-out);
}

.acc-sum::-webkit-details-marker {
  display: none;
}

.acc-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ico,
.chev {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--fg-muted);
}

.chev {
  transition: transform 200ms var(--ease-out);
}

.acc-item[open] .chev {
  transform: rotate(180deg);
}

.acc-body {
  padding: 0 0 1rem 1.5rem;
  font-size: 0.875rem;
}

.stack {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack li + li {
  margin-top: 0.65rem;
}

.stack p,
.summary,
.detail,
.muted,
.disclaimer {
  margin: 0;
}

.summary {
  margin-bottom: 0.75rem;
}

.detail,
.muted,
.disclaimer {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--fg-muted);
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  min-height: 3.25rem;
  box-sizing: border-box;
  padding: 0.9rem 1rem 0.95rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--on-primary);
  text-align: center;
  text-decoration: none;
  transform: scale(1);
  transition: transform 160ms var(--ease-out), background-color 160ms ease;
}

.cta:active {
  color: var(--on-primary);
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .cta:hover {
    background: #27272a;
  }
}

.cta-label,
.cta-sub {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
}

.cta-label {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1;
}

.cta-sub {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1;
  opacity: 0.8;
}

.official {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  text-align: center;
  margin-top: 0.35rem;
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transform: scale(1);
  transition: transform 160ms var(--ease-out);
}

.official:active,
.acc-sum:active {
  transform: scale(0.97);
}

.official:focus-visible,
.cta:focus-visible,
.acc-sum:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.card-foot {
  padding: 0.75rem 1rem 1rem;
}

.disclaimer {
  margin: 0;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .cta,
  .official,
  .acc-sum,
  .chev,
  .mark {
    transition: opacity 160ms ease, background-color 160ms ease;
    transform: none;
    animation: none;
  }

  @starting-style {
    .card {
      opacity: 0;
      transform: none;
    }
  }
}
