.auth-overlay,
.auth-direct,
.auth-action-page {
  --auth-ink: #123849;
  --auth-muted: #526b76;
  --auth-line: #d9e8e8;
  --auth-surface: #fbfdfc;
  --auth-mint: #eef9f5;
  --auth-action: #087166;
  --auth-action-hover: #075c54;
  --auth-success: #087166;
  --auth-success-soft: #effaf7;
  --auth-warning: #8a640d;
  --auth-warning-soft: #fff8dc;
  --auth-danger: #a64343;
  --auth-danger-soft: #fff5f3;
  color: var(--auth-ink);
  font-family: var(--font-sans);
}

html[data-theme="dark"] .auth-overlay,
html[data-theme="dark"] .auth-direct,
html[data-theme="dark"] .auth-action-page {
  --auth-ink: #f3fbfa;
  --auth-muted: #bfd4d3;
  --auth-line: rgba(190, 235, 228, 0.22);
  --auth-surface: #244c55;
  --auth-mint: #1c3f47;
  --auth-action: #77d8ca;
  --auth-action-hover: #a4ece1;
  --auth-success: #77d8ca;
  --auth-success-soft: rgba(27, 109, 96, 0.28);
  --auth-warning: #ffe19a;
  --auth-warning-soft: rgba(122, 86, 16, 0.34);
  --auth-danger: #ffb4ab;
  --auth-danger-soft: rgba(132, 54, 49, 0.28);
}

html[data-theme="dark"] .auth-overlay {
  background: rgba(7, 28, 36, 0.74);
}

html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .auth-action-card {
  border-color: rgba(203, 242, 236, 0.22);
  box-shadow: 0 2rem 5rem rgba(2, 19, 25, 0.34);
}

html[data-theme="dark"] .auth-card__scene,
html[data-theme="dark"] .auth-scene,
html[data-theme="dark"] .auth-action-page {
  background: #1a3942;
}

html[data-theme="dark"] .auth-field > input,
html[data-theme="dark"] .auth-field__password,
html[data-theme="dark"] .auth-field__code,
html[data-theme="dark"] .auth-providers > div > button,
html[data-theme="dark"] .auth-consent > div button,
html[data-theme="dark"] .agreement-reader,
html[data-theme="dark"] .agreement-reader__content {
  border-color: var(--auth-line);
  color: var(--auth-ink);
  background: #2b5660;
}

html[data-theme="dark"] .auth-consent > div button.is-complete,
html[data-theme="dark"] .auth-challenge {
  border-color: rgba(119, 216, 202, 0.44);
  background: #28545a;
}

html[data-theme="dark"] .auth-consent > div button.is-reminder {
  border-color: rgba(255, 225, 154, 0.42);
  color: var(--auth-warning);
  background: var(--auth-warning-soft);
}

html[data-theme="dark"] .auth-account-upgrade {
  border-color: rgba(236, 198, 106, 0.38);
  color: #ffe6a6;
  background: rgba(103, 76, 21, 0.52);
}

html[data-theme="dark"] .auth-account-upgrade strong,
html[data-theme="dark"] .auth-account-upgrade svg {
  color: #ffdf86;
}

.auth-overlay {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(8, 37, 48, 0.66);
  backdrop-filter: blur(7px);
  animation: auth-overlay-in 180ms ease-out both;
}

.auth-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(25rem, 43%);
  width: min(70rem, calc(100vw - 4rem));
  height: min(48rem, calc(100vh - 4rem));
  min-height: 40rem;
  overflow: hidden;
  border: 1px solid rgba(224, 240, 239, 0.92);
  border-radius: 1.5rem;
  background: var(--auth-surface);
  box-shadow: 0 2rem 5rem rgba(4, 27, 35, 0.28);
  animation: auth-card-in 200ms ease-out both;
}

.auth-close {
  position: fixed;
  z-index: 222;
  top: max(1rem, calc((100vh - min(48rem, calc(100vh - 4rem))) / 2 - 0.25rem));
  left: calc(50% + min(35rem, calc((100vw - 4rem) / 2)) + 0.8rem);
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(226, 243, 241, 0.48);
  border-radius: 999px;
  color: #f4fffe;
  background: rgba(11, 48, 59, 0.72);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.auth-close:hover {
  background: rgba(11, 48, 59, 0.9);
}

.auth-card__scene {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--auth-line);
  background: #eef9f7;
}

.auth-scene {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #edf9f6;
  isolation: isolate;
}

.auth-scene::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(241, 251, 248, 0.1);
  content: "";
}

.auth-scene__copy {
  position: absolute;
  z-index: 4;
  top: clamp(2rem, 5vh, 3.25rem);
  left: clamp(2rem, 4.5vw, 4rem);
  max-width: 28rem;
}

.auth-scene__brand {
  margin: 0 0 0.75rem;
  color: var(--auth-action);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.auth-scene__copy h2 {
  margin: 0;
  color: #153e4d;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.auth-scene__copy > p:last-child {
  margin: 0.7rem 0 0;
  color: #63808a;
  font-size: 0.95rem;
}

.auth-scene__world {
  position: absolute;
  z-index: 1;
  top: 5%;
  left: -5%;
  width: 108%;
  height: 92%;
  object-fit: cover;
  object-position: 50% 52%;
  user-select: none;
}

.auth-scene__steps {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.auth-scene__steps button {
  --step-left: calc(27% + var(--step-index) * 18%);
  --step-top: calc(54% + var(--step-index) * 7%);
  position: absolute;
  top: var(--step-top);
  left: var(--step-left);
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #6aa69b;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0.7rem 1.4rem rgba(40, 100, 95, 0.14);
  cursor: pointer;
  pointer-events: auto;
  transform: rotate(calc(-18deg + var(--step-index) * 12deg));
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.auth-scene__steps button:nth-child(2) {
  --step-left: 54%;
  --step-top: 45%;
}

.auth-scene__steps button:nth-child(3) {
  --step-left: 70%;
  --step-top: 62%;
}

.auth-scene__steps button:hover,
.auth-scene__steps button.is-active {
  color: var(--auth-action);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-0.25rem)
    rotate(calc(-18deg + var(--step-index) * 12deg));
}

.auth-scene__discovery {
  position: absolute;
  z-index: 6;
  right: clamp(1.5rem, 3vw, 2.75rem);
  bottom: clamp(4.5rem, 9vh, 6.2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  width: min(19rem, calc(100% - 3rem));
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1rem 2.25rem rgba(31, 88, 85, 0.15);
  backdrop-filter: blur(10px);
}

.auth-scene__discovery strong,
.auth-scene__discovery span {
  display: block;
}

.auth-scene__discovery strong {
  font-size: 0.9rem;
}

.auth-scene__discovery div:first-child > span {
  margin-top: 0.2rem;
  color: var(--auth-muted);
  font-size: 0.72rem;
}

.auth-scene__preview {
  position: relative;
  grid-row: span 2;
  width: 3.5rem;
  height: 3.5rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

.auth-scene__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-scene__preview > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(7, 56, 62, 0.28);
}

.auth-scene__discovery > button {
  justify-self: start;
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  color: var(--auth-action);
  background: none;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.auth-scene__footer {
  position: absolute;
  z-index: 6;
  bottom: 1.8rem;
  left: clamp(2rem, 4.5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.auth-scene__footer p {
  margin: 0;
  color: #58747f;
  font-size: 0.78rem;
}

.auth-scene__footer > div {
  display: flex;
  gap: 0.45rem;
}

.auth-scene__footer button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #bdd8d3;
  cursor: pointer;
}

.auth-scene__footer button[aria-pressed="true"] {
  width: 1.5rem;
  background: var(--auth-action);
}

.portal-scene {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #eef7fb;
  isolation: isolate;
}

.portal-scene > header {
  position: absolute;
  z-index: 4;
  top: clamp(2rem, 5vh, 3.25rem);
  left: clamp(2rem, 4.5vw, 4rem);
  max-width: 28rem;
}

.portal-scene > header p {
  margin: 0 0 0.75rem;
  color: var(--auth-action);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.portal-scene > header h2 {
  margin: 0;
  color: #153e4d;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.portal-scene > header span {
  display: block;
  margin-top: 0.7rem;
  color: #63808a;
  font-size: 0.95rem;
}

.portal-scene > img {
  position: absolute;
  z-index: 1;
  top: 2%;
  left: -3%;
  width: 106%;
  height: 98%;
  object-fit: cover;
  object-position: 50% 50%;
  user-select: none;
}

.portal-scene__targets {
  position: absolute;
  z-index: 5;
  inset: 0;
}

.portal-scene__targets button {
  --portal-left: calc(22% + var(--portal-index) * 27%);
  --portal-top: 58%;
  position: absolute;
  top: var(--portal-top);
  left: var(--portal-left);
  display: grid;
  min-width: 5.4rem;
  min-height: 3.5rem;
  place-items: center;
  gap: 0.1rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 0.9rem;
  color: #426e7c;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 0.75rem 1.7rem rgba(41, 92, 111, 0.14);
  cursor: pointer;
  backdrop-filter: blur(9px);
  transform: translate(-50%, -50%);
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.portal-scene__targets button:nth-child(2) {
  --portal-top: 48%;
}

.portal-scene__targets button:hover,
.portal-scene__targets button.is-active {
  color: var(--auth-action);
  background: rgba(255, 255, 255, 0.96);
  transform: translate(-50%, calc(-50% - 0.25rem));
}

.portal-scene__targets button span {
  font-size: 0.72rem;
  font-weight: 720;
}

.portal-scene__summary {
  position: absolute;
  z-index: 6;
  right: clamp(1.5rem, 3vw, 2.75rem);
  bottom: clamp(4rem, 8vh, 5.8rem);
  display: flex;
  width: min(20rem, calc(100% - 3rem));
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 1rem;
  color: var(--auth-action);
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 1rem 2.25rem rgba(31, 88, 98, 0.14);
  backdrop-filter: blur(10px);
}

.portal-scene__summary div {
  display: grid;
  gap: 0.2rem;
}

.portal-scene__summary strong {
  color: #234957;
  font-size: 0.86rem;
}

.portal-scene__summary span {
  color: var(--auth-muted);
  font-size: 0.72rem;
}

.portal-scene > footer {
  position: absolute;
  z-index: 6;
  bottom: 2rem;
  left: clamp(2rem, 4.5vw, 4rem);
  display: flex;
  gap: 0.45rem;
}

.portal-scene > footer button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #bdd8d3;
  cursor: pointer;
}

.portal-scene > footer button[aria-pressed="true"] {
  width: 1.5rem;
  background: var(--auth-action);
}

.auth-scene-loading,
.auth-scene-fallback {
  display: grid;
  height: 100%;
  place-content: center;
  padding: 3rem;
  background: #eef9f6;
  text-align: center;
}

.auth-scene-loading span {
  width: 9rem;
  height: 0.3rem;
  overflow: hidden;
  border-radius: 999px;
  background: #cfe8e2;
}

.auth-scene-loading span::after {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: var(--auth-action);
  animation: auth-scene-progress 900ms ease-in-out infinite alternate;
  content: "";
}

.auth-scene-fallback p {
  margin: 0 0 0.65rem;
  color: var(--auth-action);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.auth-scene-fallback h2 {
  margin: 0;
  color: var(--auth-ink);
  font-size: 1.8rem;
}

.auth-scene-fallback span {
  display: block;
  margin-top: 0.65rem;
  color: var(--auth-muted);
  font-size: 0.85rem;
}

.auth-task {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: clamp(2.5rem, 5vh, 4rem) clamp(2.35rem, 3.6vw, 3.7rem) 2rem;
  background: var(--auth-surface);
}

.auth-task__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(2rem, 4vh, 3.1rem);
  color: var(--auth-action);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.auth-qr-fold {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  width: 6.4rem;
  height: 6.4rem;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.auth-qr-fold::before,
.auth-qr-fold::after {
  position: absolute;
  inset: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  content: "";
}

.auth-qr-fold::before {
  background: #d7eee9;
}

.auth-qr-fold::after {
  border-left: 1px solid rgba(91, 151, 142, 0.34);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.58) 0 48%,
    transparent 48% 100%
  );
}

.auth-qr-fold__code {
  position: absolute;
  top: -1.1rem;
  right: -1.1rem;
  width: 5.4rem;
  height: 5.4rem;
  border: 0.35rem solid #fffdf7;
  object-fit: cover;
  box-shadow: 0 0.4rem 1rem rgba(21, 74, 74, 0.15);
}

.auth-qr-fold__label {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  right: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem 0.45rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 113, 102, 0.92);
  font-size: 0.66rem;
  font-weight: 760;
}

.auth-qr-fold:hover {
  filter: saturate(1.08);
  transform: translate(-0.08rem, 0.08rem);
}

.auth-task--register {
  padding: 1.45rem clamp(2rem, 3vw, 3rem) 1.2rem;
}

.auth-task--register .auth-task__brand {
  margin-bottom: 0.8rem;
}

.auth-task--register .auth-task__heading p {
  margin: 0.45rem 0 0.75rem;
}

.auth-account-upgrade {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  padding: 0.68rem 0.78rem;
  border: 1px solid #ead8a3;
  border-radius: 0.8rem;
  color: #715719;
  background: #fff8dd;
  font-size: 0.76rem;
  line-height: 1.55;
}

.auth-account-upgrade svg {
  flex: 0 0 auto;
  margin-top: 0.05rem;
  color: #b78316;
}

.auth-account-upgrade span,
.auth-account-upgrade strong {
  display: block;
}

.auth-account-upgrade strong {
  margin-bottom: 0.1rem;
  color: #60480f;
}

.auth-task--register .auth-form {
  gap: 0.62rem;
}

.auth-task--register .auth-channel-switcher {
  margin: 0 0 0.7rem;
}

.auth-task--register .auth-field > input,
.auth-task--register .auth-field__password,
.auth-task--register .auth-field__code {
  height: 2.8rem;
}

.auth-task--register .auth-consent {
  gap: 0.45rem;
  padding: 0.65rem 0.75rem;
}

.auth-task--register .auth-primary {
  min-height: 2.8rem;
}

.auth-task--register .auth-task__switch {
  margin-top: 0.65rem;
}

.auth-task--qr .auth-task__brand {
  margin-bottom: 1.45rem;
}

.auth-task__heading h1,
.auth-unavailable h1,
.auth-verified h1 {
  margin: 0;
  color: var(--auth-ink);
  font-size: clamp(1.7rem, 2.25vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.auth-task__heading p {
  margin: 0.7rem 0 1.8rem;
  color: var(--auth-muted);
  font-size: 0.92rem;
}

.auth-task__heading h1:focus {
  outline: none;
}

.auth-channel-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  margin: -0.75rem 0 1rem;
  padding: 0.25rem;
  border-radius: 0.9rem;
  background: #eaf3f1;
}

.auth-channel-switcher button {
  min-height: 2.45rem;
  padding: 0.45rem 0.75rem;
  border: 0;
  border-radius: 0.7rem;
  color: var(--auth-muted);
  background: transparent;
  font-weight: 720;
  cursor: pointer;
}

.auth-channel-switcher button[aria-pressed="true"] {
  color: var(--auth-action);
  background: #fff;
  box-shadow: 0 0.3rem 1rem rgba(27, 72, 77, 0.08);
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-field {
  display: grid;
  gap: 0.45rem;
  color: #284b58;
  font-size: 0.86rem;
  font-weight: 650;
}

.auth-field > input,
.auth-field__password,
.auth-field__code {
  width: 100%;
  min-width: 0;
  height: 3.15rem;
  border: 1px solid #cbdcde;
  border-radius: 0.85rem;
  color: var(--auth-ink);
  background: #fff;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.auth-field > input {
  padding: 0 0.95rem;
}

.auth-field__password {
  display: flex;
  align-items: center;
}

.auth-field__password input,
.auth-field__code input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0 0 0 0.95rem;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
}

.auth-field__password button {
  display: grid;
  width: 3rem;
  height: 100%;
  place-items: center;
  padding: 0;
  border: 0;
  color: #6a838c;
  background: transparent;
  cursor: pointer;
}

.auth-field__hint {
  margin-top: -0.18rem;
  color: #71868e;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
}

.auth-field__code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.auth-field__code button {
  min-width: 6.5rem;
  height: calc(100% - 0.5rem);
  margin-right: 0.25rem;
  padding: 0 0.75rem;
  border: 0;
  border-radius: 0.65rem;
  color: #fff;
  background: var(--auth-action);
  font-size: 0.78rem;
  font-weight: 720;
  cursor: pointer;
}

.auth-field__code button:disabled {
  cursor: wait;
  opacity: 0.48;
}

.auth-field > input:focus,
.auth-field__password:focus-within,
.auth-field__code:focus-within {
  border-color: var(--auth-action);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(20, 167, 149, 0.15);
}

.auth-field.is-error > input,
.auth-field.is-error > input:focus {
  border-color: var(--auth-danger);
  background: var(--auth-danger-soft);
  box-shadow: 0 0 0 0.2rem
    color-mix(in srgb, var(--auth-danger) 16%, transparent);
}

.auth-field.is-success > input {
  border-color: var(--auth-success);
  background: var(--auth-success-soft);
}

.auth-field__validation {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: -0.18rem;
  color: var(--auth-danger);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.45;
}

.auth-field__validation svg {
  flex: 0 0 auto;
}

.auth-form__forgot {
  justify-self: end;
  margin-top: -0.45rem;
  padding: 0.2rem 0;
  border: 0;
  color: var(--auth-action);
  background: none;
  font-size: 0.8rem;
  font-weight: 650;
  cursor: pointer;
}

.auth-primary {
  display: flex;
  width: 100%;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0.85rem;
  color: #fff;
  background: var(--auth-action);
  font-weight: 750;
  cursor: pointer;
  transition:
    background 150ms ease,
    transform 150ms ease;
}

.auth-primary:hover:not(:disabled) {
  background: var(--auth-action-hover);
  transform: translateY(-1px);
}

.auth-primary:disabled {
  cursor: wait;
  opacity: 0.62;
}

.auth-spinner {
  animation: auth-spin 900ms linear infinite;
}

.auth-status {
  min-height: 0;
  color: var(--auth-danger);
  font-size: 0.79rem;
}

.auth-status.is-visible {
  display: flex;
  min-height: 1.5rem;
  align-items: flex-start;
  gap: 0.4rem;
}

.auth-task__switch {
  margin: 1.15rem 0 0;
  color: var(--auth-muted);
  text-align: center;
  font-size: 0.82rem;
}

.auth-task__switch button,
.auth-task__terms button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border: 0;
  color: var(--auth-action);
  background: none;
  font-weight: 650;
  cursor: pointer;
}

.auth-providers {
  margin-top: 1.5rem;
}

.auth-providers > p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: #5f747c;
  font-size: 0.72rem;
}

.auth-providers > p::before,
.auth-providers > p::after {
  height: 1px;
  flex: 1;
  background: var(--auth-line);
  content: "";
}

.auth-providers > div {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.auth-providers > div > button {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  padding: 0;
  border: 1px solid #d3e1e2;
  border-radius: 999px;
  color: #244453;
  background: #fff;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.auth-providers > div > button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #9fc8c2;
  box-shadow: 0 0.5rem 1.1rem rgb(67 118 112 / 14%);
}

.auth-providers > div > button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.auth-providers > div > button span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.auth-qr-panel {
  display: grid;
  justify-items: center;
  align-content: start;
}

.auth-qr-panel .auth-task__heading {
  width: 100%;
  text-align: left;
}

.auth-qr-panel .auth-task__heading p {
  margin-bottom: 1.1rem;
}

.auth-qr-code {
  position: relative;
  width: min(15.5rem, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0.65rem;
  border: 1px solid #cce2df;
  border-radius: 1.3rem;
  background: #fffdf7;
  box-shadow:
    0 1rem 2.4rem rgba(29, 93, 89, 0.12),
    inset 0 0 0 0.25rem rgba(229, 246, 241, 0.74);
}

.auth-qr-code::before,
.auth-qr-code::after {
  position: absolute;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-color: #69b7a9;
  content: "";
  pointer-events: none;
}

.auth-qr-code::before {
  top: 0.35rem;
  left: 0.35rem;
  border-top: 0.16rem solid;
  border-left: 0.16rem solid;
  border-radius: 0.55rem 0 0;
}

.auth-qr-code::after {
  right: 0.35rem;
  bottom: 0.35rem;
  border-right: 0.16rem solid;
  border-bottom: 0.16rem solid;
  border-radius: 0 0 0.55rem;
}

.auth-qr-code > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  image-rendering: pixelated;
}

.auth-qr-code__loading {
  display: grid;
  height: 100%;
  place-content: center;
  grid-auto-flow: column;
  gap: 0.4rem;
}

.auth-qr-code__loading i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #72b9ac;
  animation: auth-breathe 800ms ease-in-out infinite alternate;
}

.auth-qr-code__loading i:nth-child(2) {
  animation-delay: 120ms;
}

.auth-qr-code__loading i:nth-child(3) {
  animation-delay: 240ms;
}

.auth-qr-code__overlay {
  position: absolute;
  z-index: 3;
  inset: 0.65rem;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.5rem;
  border-radius: 0.8rem;
  color: var(--auth-action);
  background: rgba(250, 255, 252, 0.9);
  backdrop-filter: blur(3px);
}

.auth-qr-code__overlay strong {
  font-size: 0.9rem;
}

.auth-qr-state {
  display: flex;
  width: min(15.5rem, 100%);
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d7e7e5;
  border-radius: 0.9rem;
  background: #f4faf8;
}

.auth-qr-state > span {
  width: 0.62rem;
  height: 0.62rem;
  flex: 0 0 auto;
  border: 0.18rem solid rgba(8, 113, 102, 0.2);
  border-radius: 999px;
  background: var(--auth-action);
}

.auth-qr-state div {
  display: grid;
  gap: 0.12rem;
}

.auth-qr-state strong {
  color: #294e58;
  font-size: 0.78rem;
}

.auth-qr-state small {
  color: var(--auth-muted);
  font-size: 0.68rem;
}

.auth-qr-state--scanned > span {
  background: #c98b29;
}

.auth-qr-state--confirmed > span {
  background: #4d9a70;
}

.auth-qr-state--expired > span {
  background: #ad5757;
}

.auth-qr-retry,
.auth-qr-back {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding: 0.55rem 0.9rem;
  border-radius: 0.8rem;
  font-weight: 720;
  cursor: pointer;
}

.auth-qr-retry {
  border: 1px solid #bedbd6;
  color: var(--auth-action);
  background: #fff;
}

.auth-qr-back {
  border: 0;
  color: var(--auth-action);
  background: transparent;
  font-size: 0.8rem;
}

.auth-task__terms {
  margin: auto 0 0;
  padding-top: 1.5rem;
  color: #5f747c;
  font-size: 0.72rem;
  line-height: 1.65;
  text-align: center;
}

.auth-consent {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--auth-line);
  border-radius: 0.85rem;
  background: var(--auth-mint);
}

.auth-consent p,
.auth-consent small {
  margin: 0;
}

.auth-consent p {
  color: #55717c;
  font-size: 0.76rem;
}

.auth-consent > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.auth-consent > div button {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid #c9dcdb;
  border-radius: 999px;
  background: #fff;
  font-size: 0.76rem;
  cursor: pointer;
}

.auth-consent > div button.is-reminder {
  border-color: #e4c76f;
  color: var(--auth-warning);
  background: var(--auth-warning-soft);
}

.auth-consent > div button.is-complete {
  border-color: #9ccfc6;
  color: var(--auth-success);
  background: var(--auth-success-soft);
}

.auth-consent > label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #294c58;
  font-size: 0.78rem;
}

.auth-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.1rem 0 0;
  accent-color: var(--auth-action);
}

.auth-consent small {
  color: #71868e;
  font-size: 0.7rem;
}

.auth-challenge {
  display: grid;
  gap: 0.5rem;
  min-height: 4rem;
  padding: 0.75rem;
  border: 1px solid var(--auth-line);
  border-radius: 0.8rem;
  background: #f6faf9;
}

.auth-challenge__heading {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--auth-ink);
  font-size: 0.8rem;
}

.auth-challenge__heading svg {
  flex: 0 0 auto;
  color: var(--auth-action);
}

.auth-challenge__status {
  margin: 0;
  color: var(--auth-muted);
  font-size: 0.75rem;
}

.auth-challenge__retry {
  width: fit-content;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid var(--auth-line);
  border-radius: 0.65rem;
  color: var(--auth-action);
  background: var(--auth-surface);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 750;
}

.auth-loading {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.auth-loading span,
.auth-loading i {
  display: block;
  height: 3rem;
  border-radius: 0.8rem;
  background: #e8f1f0;
  animation: auth-breathe 1.2s ease-in-out infinite alternate;
}

.auth-loading span {
  width: 65%;
  height: 2.2rem;
}

.auth-unavailable,
.auth-verified {
  display: grid;
  justify-items: start;
  margin-block: auto;
}

.auth-unavailable > svg,
.auth-verified > svg {
  margin-bottom: 1.2rem;
  color: var(--auth-action);
}

.auth-unavailable p,
.auth-verified p {
  margin: 0.75rem 0 1.5rem;
  color: var(--auth-muted);
}

.auth-unavailable button,
.auth-verified button {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid #c8dcda;
  border-radius: 0.8rem;
  color: var(--auth-action);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.auth-verified__actions {
  display: grid;
  gap: 0.55rem;
  width: min(100%, 18rem);
}

.auth-verified__actions button:disabled {
  cursor: wait;
  opacity: 0.54;
}

.auth-verified__actions button + button,
.auth-verified .auth-verified__back {
  color: var(--auth-muted);
  background: transparent;
}

.auth-verified .auth-verified__message {
  min-height: 1.25rem;
  margin: 0.65rem 0;
  color: var(--auth-action);
  font-size: 0.78rem;
}

.auth-verified small {
  margin: -0.65rem 0 1.4rem;
  color: #71868e;
}

.agreement-reader {
  display: grid;
  height: 100%;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background: #eef9f6;
}

.agreement-reader > header {
  padding: 2.2rem 2.5rem 1.2rem;
}

.agreement-reader > header button {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  padding: 0 0.7rem;
  border: 1px solid #ccdedc;
  border-radius: 999px;
  color: var(--auth-action);
  background: #fff;
  cursor: pointer;
}

.agreement-reader > header p,
.agreement-reader > header span {
  color: #67828b;
  font-size: 0.72rem;
}

.agreement-reader > header p {
  margin: 0;
}

.agreement-reader > header h2 {
  margin: 0.35rem 0 0.2rem;
  color: var(--auth-ink);
  font-size: 1.8rem;
}

.agreement-reader__progress {
  height: 0.25rem;
  background: #dcebe8;
}

.agreement-reader__progress span {
  display: block;
  height: 100%;
  background: var(--auth-action);
  transition: width 120ms linear;
}

.agreement-reader__content {
  overflow: auto;
  padding: 1.7rem 2.5rem 2.5rem;
  color: #405f6a;
  scrollbar-color: #9bbdb7 transparent;
}

.agreement-reader__content h3 {
  margin: 0 0 1.2rem;
  color: #244957;
  font-size: 1.05rem;
}

.agreement-reader__content p {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.9;
}

.agreement-reader__end {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--auth-action);
  font-size: 0.8rem;
  font-weight: 700;
}

.agreement-reader__notice {
  display: grid;
  justify-items: center;
  padding: 2rem;
  color: var(--auth-danger);
  text-align: center;
}

.agreement-reader__notice p {
  max-width: 23rem;
  margin-top: 0.5rem;
}

.agreement-reader__skeleton {
  display: grid;
  gap: 0.8rem;
}

.agreement-reader__skeleton i {
  display: block;
  height: 3.5rem;
  border-radius: 0.7rem;
  background: #dfeeea;
}

.agreement-reader > footer {
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2.5rem;
  border-top: 1px solid #d5e6e3;
  background: rgba(255, 255, 255, 0.78);
}

.agreement-reader > footer span {
  color: var(--auth-muted);
  font-size: 0.75rem;
}

.agreement-reader > footer button {
  min-height: 2.6rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 0.75rem;
  color: #fff;
  background: var(--auth-action);
  font-weight: 700;
  cursor: pointer;
}

.agreement-reader > footer button:disabled {
  cursor: not-allowed;
  color: #f7faf9;
  background: #b8c7c5;
  opacity: 1;
}

.auth-direct {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: #dfeeed;
}

.auth-direct .auth-card {
  height: min(48rem, calc(100vh - 4rem));
}

.auth-direct__back {
  position: fixed;
  top: 1rem;
  left: 1rem;
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #315765;
  background: rgba(255, 255, 255, 0.84);
}

.auth-direct__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #315765;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0.6rem 1.5rem rgba(48, 87, 101, 0.1);
}

.auth-direct__close:hover,
.auth-direct__close:focus-visible {
  color: #0b756d;
  background: #fff;
}

.auth-action-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
  color: var(--auth-ink);
  background: #dfeeed;
  font-family: var(--font-sans);
}

.auth-action-card {
  display: grid;
  width: min(62rem, calc(100vw - 4rem));
  min-height: min(42rem, calc(100vh - 4rem));
  overflow: hidden;
  grid-template-columns: minmax(0, 52%) minmax(23rem, 48%);
  border: 1px solid rgba(224, 240, 239, 0.92);
  border-radius: 1.5rem;
  background: var(--auth-surface);
  box-shadow: 0 2rem 5rem rgba(4, 27, 35, 0.22);
}

.auth-action-card__scene {
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--auth-line);
}

.auth-action-card__task {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  padding: clamp(2rem, 5vw, 4.25rem);
  background: var(--auth-surface);
}

.auth-action-card__task > a:first-child {
  position: absolute;
  align-self: start;
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.35rem;
  margin-top: -3rem;
  color: var(--auth-action);
  font-size: 0.8rem;
  font-weight: 700;
}

.auth-action-state,
.auth-action-form {
  display: grid;
  justify-items: start;
}

.auth-action-state > svg,
.auth-action-form > svg {
  margin-bottom: 1.2rem;
  color: var(--auth-action);
}

.auth-action-state.is-error > svg {
  color: var(--auth-danger);
}

.auth-action-state h1,
.auth-action-form h1 {
  margin: 0;
  color: var(--auth-ink);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.auth-action-state > p,
.auth-action-form > p {
  margin: 0.8rem 0 1.7rem;
  color: var(--auth-muted);
}

.auth-action-primary {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 0.85rem;
  color: white;
  background: var(--auth-action);
  font-weight: 740;
}

.auth-action-form form {
  display: grid;
  width: 100%;
  gap: 1rem;
}

.auth-action-message {
  margin: 0;
  color: var(--auth-danger);
  font-size: 0.78rem;
}

.invited-auth .auth-task{padding-top:2.2rem}
.invited-auth__progress{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin:0 0 1rem;padding:0;list-style:none}
.invited-auth__progress li{display:flex;align-items:center;gap:.35rem;color:var(--auth-muted);font-size:.7rem;font-weight:700}
.invited-auth__progress li::after{height:1px;flex:1;background:var(--auth-line);content:""}
.invited-auth__progress li:last-child::after{display:none}
.invited-auth__progress li>span{display:grid;width:1.55rem;height:1.55rem;place-items:center;flex:0 0 auto;border:1px solid var(--auth-line);border-radius:999px;background:#fff}
.invited-auth__progress li.is-active{color:var(--auth-action)}
.invited-auth__progress li.is-active>span{border-color:var(--auth-action);color:#fff;background:var(--auth-action)}
.invited-auth__availability,.invited-auth__verified,.invited-auth__restricted{display:flex;min-height:2.75rem;align-items:center;gap:.5rem;margin-bottom:1rem;padding:.65rem .75rem;border:1px solid #cfe4df;border-radius:.75rem;color:var(--auth-action);background:var(--auth-success-soft);font-size:.74rem;font-weight:650}
.invited-auth__switch{display:grid;grid-template-columns:1fr 1fr;gap:.25rem;margin-bottom:1.2rem;padding:.25rem;border-radius:.85rem;background:#eaf3f1}
.invited-auth__switch button{min-height:2.75rem;border:0;border-radius:.65rem;color:var(--auth-muted);background:transparent;font-weight:720;cursor:pointer}
.invited-auth__switch button[aria-pressed=true]{color:var(--auth-action);background:#fff;box-shadow:0 .3rem 1rem rgba(27,72,77,.08)}
.invited-auth__switch button:disabled,.auth-task__switch button:disabled{cursor:not-allowed;opacity:.5}
.invited-auth__restricted{margin:0;color:var(--auth-muted);background:var(--auth-mint)}
.invited-auth__consent{display:flex;align-items:flex-start;gap:.55rem;color:var(--auth-muted);font-size:.76rem;line-height:1.5}
.invited-auth__consent input{width:1.05rem;height:1.05rem;margin-top:.05rem;accent-color:var(--auth-action)}
.invited-auth__secondary,.invited-auth__secondary-link{display:inline-flex;min-height:2.75rem;align-items:center;justify-content:center;padding:.6rem .9rem;border:1px solid var(--auth-line);border-radius:.8rem;color:var(--auth-action);background:#fff;font-size:.8rem;font-weight:700;cursor:pointer}
.invited-auth button:focus-visible,.invited-auth a:focus-visible,.invited-auth input:focus-visible{outline:.18rem solid color-mix(in srgb,var(--auth-action) 72%,white);outline-offset:.14rem}
@media(max-width:37.4375rem){.invited-auth .auth-task{padding-top:1.2rem}.invited-auth__progress li{display:grid;justify-items:center;gap:.2rem;text-align:center}.invited-auth__progress li::after{display:none}}

@keyframes auth-overlay-in {
  from {
    opacity: 0;
  }
}

@keyframes auth-card-in {
  from {
    transform: translateY(0.65rem);
  }
}

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

@keyframes auth-breathe {
  to {
    opacity: 0.55;
  }
}

@keyframes auth-scene-progress {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 68.6875rem) {
  .auth-overlay {
    padding: 1.5rem;
  }

  .auth-card,
  .auth-direct .auth-card {
    width: min(42rem, calc(100vw - 3rem));
    height: min(60rem, calc(100vh - 3rem));
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(11.5rem, 28%) minmax(0, 1fr);
  }

  .auth-close {
    top: 0.6rem;
    right: 0.6rem;
    left: auto;
  }

  .auth-card__scene {
    border-right: 0;
    border-bottom: 1px solid var(--auth-line);
  }

  .auth-scene__copy {
    top: 1.4rem;
    left: 1.6rem;
  }

  .auth-scene__copy h2 {
    max-width: 20rem;
    font-size: 1.55rem;
  }

  .auth-scene__copy > p:last-child,
  .auth-scene__steps,
  .auth-scene__discovery,
  .auth-scene__footer,
  .portal-scene__targets,
  .portal-scene__summary,
  .portal-scene > footer {
    display: none;
  }

  .auth-scene__world {
    top: -72%;
    left: 42%;
    width: 58%;
    height: 190%;
  }

  .portal-scene > header {
    top: 1.4rem;
    left: 1.6rem;
  }

  .portal-scene > header h2 {
    max-width: 22rem;
    font-size: 1.55rem;
  }

  .portal-scene > header span {
    display: none;
  }

  .portal-scene > img {
    top: -80%;
    left: 48%;
    width: 55%;
    height: 200%;
  }

  .auth-task {
    overflow: auto;
    padding: 2rem clamp(1.5rem, 7vw, 3.4rem);
  }

  .auth-task__brand {
    margin-bottom: 1.3rem;
  }

  .agreement-reader > header,
  .agreement-reader__content {
    padding-inline: 1.6rem;
  }

  .agreement-reader > footer {
    padding-inline: 1.6rem;
  }

  .auth-action-card {
    width: min(42rem, calc(100vw - 3rem));
    min-height: min(58rem, calc(100vh - 3rem));
    grid-template-columns: 1fr;
    grid-template-rows: 12rem minmax(0, 1fr);
  }

  .auth-action-card__scene {
    border-right: 0;
    border-bottom: 1px solid var(--auth-line);
  }

  .auth-action-card__task {
    align-content: start;
    padding: 3.5rem clamp(1.5rem, 7vw, 3.4rem) 2rem;
  }

  .auth-action-card__task > a:first-child {
    margin-top: -2.8rem;
  }
}

@media (max-width: 37.4375rem) {
  .auth-overlay,
  .auth-direct {
    display: block;
    min-height: 100dvh;
    padding: 0;
    background: var(--auth-surface);
  }

  .auth-overlay .auth-card,
  .auth-direct .auth-card {
    width: 100%;
    min-height: 100dvh;
    height: auto;
    grid-template-rows: 7.75rem auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .auth-close {
    position: fixed;
    top: 0.7rem;
    right: 0.7rem;
    color: #315765;
    border-color: #d2e2e2;
    background: rgba(255, 255, 255, 0.9);
  }

  .auth-scene__copy {
    top: 1.25rem;
    left: 1.25rem;
  }

  .auth-scene__brand {
    margin-bottom: 0.35rem;
  }

  .auth-scene__copy h2 {
    max-width: 14rem;
    font-size: 1.18rem;
  }

  .auth-scene__world {
    top: -128%;
    left: 58%;
    width: 48%;
    height: 260%;
  }

  .portal-scene > header {
    top: 1.25rem;
    left: 1.25rem;
  }

  .portal-scene > header p {
    margin-bottom: 0.35rem;
  }

  .portal-scene > header h2 {
    max-width: 15rem;
    font-size: 1.15rem;
  }

  .portal-scene > img {
    top: -142%;
    left: 62%;
    width: 45%;
    height: 285%;
  }

  .auth-task {
    overflow: visible;
    padding: 1.5rem 1.25rem max(2rem, env(safe-area-inset-bottom));
  }

  .auth-task__brand {
    display: none;
  }

  .auth-task__heading h1,
  .auth-unavailable h1,
  .auth-verified h1 {
    font-size: 1.65rem;
  }

  .auth-task__heading p {
    margin-bottom: 1.4rem;
  }

  .auth-qr-fold {
    width: 5.25rem;
    height: 5.25rem;
  }

  .auth-qr-fold__code {
    top: -1rem;
    right: -1rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  .auth-qr-fold__label {
    top: 0.4rem;
    right: 0.35rem;
    padding: 0.25rem 0.38rem;
  }

  .auth-qr-code,
  .auth-qr-state {
    width: min(14rem, 100%);
  }

  .auth-task__terms {
    margin-top: 1.2rem;
  }

  .auth-direct__back {
    position: absolute;
    z-index: 8;
    top: 0.65rem;
    left: auto;
    right: 0.7rem;
    color: #315765;
    border-color: #d2e2e2;
    background: rgba(255, 255, 255, 0.9);
  }

  .agreement-reader {
    position: fixed;
    z-index: 10;
    inset: 0;
    height: 100dvh;
  }

  .auth-action-page {
    min-height: 100dvh;
    padding: 0;
    background: var(--auth-surface);
  }

  .auth-action-card {
    width: 100%;
    min-height: 100dvh;
    grid-template-rows: 7.75rem minmax(0, 1fr);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .auth-action-card__task {
    padding: 3.5rem 1.25rem max(2rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-overlay,
  .auth-card,
  .auth-spinner,
  .auth-loading span,
  .auth-loading i {
    animation: none;
  }

  .auth-scene-loading span::after {
    animation: none;
  }
}
