@font-face {
  font-family: WildkinPixel;
  src: url('/fonts/VT323-Regular.ttf') format('truetype');
  font-display: swap;
}
.auth-screen {
  --auth-ink: #443b27;
  --auth-muted: #746951;
  --auth-gold: #b38b45;
  min-height: 100svh;
  width: 100%;
  margin: 0;
  color: var(--auth-ink);
  font:
    20px/1.35 WildkinPixel,
    monospace;
  background: #36432b url('./bramble-island.jpg') center/cover fixed;
  isolation: isolate;
  overflow: auto;
}
.auth-screen::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(16, 30, 17, 0.12),
      transparent 42%,
      rgba(17, 27, 17, 0.38)
    ),
    linear-gradient(0deg, rgba(18, 30, 18, 0.65), transparent 38%);
}
.auth-shell {
  min-height: 100svh;
  max-width: 1440px;
  padding: 64px clamp(24px, 6vw, 96px) 80px;
  box-sizing: border-box;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: clamp(32px, 7vw, 110px);
}
.auth-brand {
  align-self: end;
  padding-bottom: 24px;
  color: #fff4cf;
  text-shadow:
    0 2px 4px #1c2a1c,
    0 4px 28px #17251c;
  max-width: 570px;
}
.auth-brand .auth-kicker {
  font-size: 19px;
  letter-spacing: 3px;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.auth-wordmark {
  font:
    clamp(80px, 8.5vw, 136px)/0.9 WildkinPixel,
    monospace;
  letter-spacing: 2px;
  margin: 0 0 18px;
  color: #ffefbb;
  font-weight: 400;
}
.auth-brand .auth-tagline {
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.15;
  margin: 0 0 14px;
  max-width: 460px;
}
.auth-brand .auth-world-note {
  font-size: 20px;
  color: #e4e6c6;
  margin: 0;
  max-width: 360px;
}
.auth-card {
  position: relative;
  background: linear-gradient(120deg, #faf2d9, #f0e4c4);
  border: 2px solid #705b36;
  outline: 1px solid #d5b575;
  outline-offset: -8px;
  box-shadow:
    0 5px 0 #3b3423,
    0 16px 56px #111c1760;
  padding: 38px 34px 30px;
  border-radius: 7px;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
.auth-card::before {
  content: '✦';
  position: absolute;
  top: -18px;
  left: calc(50% - 19px);
  width: 38px;
  height: 34px;
  text-align: center;
  background: #f2e6c7;
  border: 1px solid #a98a54;
  border-radius: 50%;
  color: #7f6634;
  font-size: 26px;
  line-height: 34px;
}
.auth-card h1,
.auth-card h2 {
  font:
    40px/1.05 WildkinPixel,
    monospace;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
  color: #443b27;
  text-align: center;
}
.auth-eyebrow {
  display: block;
  text-align: center;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: #7b6947;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.auth-intro {
  color: var(--auth-muted);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.3;
}
.auth-card label {
  display: block;
  font-size: 21px;
  margin: 0 0 5px;
  color: #4c422e;
}
.auth-card
  input:not([type='checkbox']):not([type='hidden']):not([type='submit']),
.auth-card select {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  border: 1px solid #b8a477;
  border-bottom-width: 2px;
  background: #fffaf0;
  border-radius: 4px;
  box-shadow: inset 0 2px 3px #5546220d;
  padding: 9px 12px;
  font:
    21px WildkinPixel,
    monospace;
  color: #3c372a;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.auth-card input:focus-visible {
  border-color: #537143 !important;
  box-shadow: 0 0 0 3px #62804633 !important;
}
.auth-card input[aria-invalid='true'] {
  border-color: #ad5340 !important;
  background: #fff6ee !important;
}
.auth-field {
  margin: 0 0 18px;
}
.auth-input-group {
  display: flex;
  position: relative;
}
.auth-input-group input {
  padding-right: 52px !important;
}
.auth-password-toggle {
  position: absolute;
  inset: 1px 1px 2px auto;
  width: 46px;
  border: 0;
  border-left: 1px solid #d6c8a6;
  border-radius: 0 3px 3px 0;
  background: #eee5d0;
  color: #65583b;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.auth-eye {
  display: block;
  width: 20px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 70% 25%;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.auth-eye::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin: 2px auto;
}
.auth-eye-hidden::before {
  content: '';
  position: absolute;
  left: 7px;
  top: -5px;
  width: 2px;
  height: 22px;
  background: currentColor;
  box-shadow: 1px 0 #eee5d0;
}
.auth-screen a {
  color: #52653b;
  text-underline-offset: 3px;
}
.auth-screen a:hover {
  color: #344924;
}
.auth-screen :focus-visible {
  outline: 3px solid #5a7943;
  outline-offset: 4px;
}
.auth-button,
.auth-card input[type='submit'] {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 49px;
  border: 1px solid #344d2c;
  border-bottom: 4px solid #30472a;
  border-radius: 4px;
  background: linear-gradient(#637e49, #4f6a3b);
  box-shadow: inset 0 1px #a7b681;
  color: #fff5d2 !important;
  text-decoration: none;
  font:
    24px WildkinPixel,
    monospace;
  cursor: pointer;
  padding: 8px 16px;
  transition:
    filter 0.15s,
    transform 0.15s;
  white-space: normal;
  text-shadow: 0 1px #334b2d;
}
.auth-button:hover,
.auth-card input[type='submit']:hover {
  filter: brightness(1.09);
}
.auth-button:active,
.auth-card input[type='submit']:active {
  transform: translateY(1px);
}
.auth-button.secondary {
  background: #f4e9cc;
  color: #655333 !important;
  border-color: #b29a66;
  border-bottom-color: #a68c58;
  text-shadow: none;
  margin-top: 12px;
  box-shadow: inset 0 1px #fff8e6;
}
.auth-card input:disabled,
.auth-card [aria-disabled='true'] {
  opacity: 0.65;
  cursor: wait;
}
.auth-card .checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  margin: 0 0 20px;
}
.auth-card input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: #526e3f;
}
.auth-error,
.auth-field-error {
  color: #923f30;
  font-size: 18px;
  line-height: 1.2;
  display: block;
  margin: 6px 0 0;
}
.auth-alert {
  background: #ecdcb9;
  border: 1px solid #c9ab72;
  border-radius: 4px;
  padding: 10px 12px;
  margin: 0 0 18px;
  font-size: 19px;
}
.auth-alert.alert-error {
  background: #f2daca;
  border-color: #ca977b;
  color: #813b2c;
}
.auth-card #kc-info {
  border-top: 1px solid #d0bd91;
  padding-top: 18px;
  margin-top: 24px;
  text-align: center;
  font-size: 19px;
}
.auth-card #kc-info a {
  display: inline-block;
  margin-left: 4px;
}
.auth-card #kc-registration-container {
  margin-top: 22px;
  text-align: center;
}
.auth-card #kc-registration-container .auth-field {
  margin: 0;
}
.auth-card #kc-form-buttons {
  margin: 0;
}
.auth-card #kc-register-form #kc-form-buttons {
  margin-top: 20px;
}
.auth-card .subtitle {
  text-align: right;
  font-size: 15px;
  color: #827253;
  margin-bottom: 8px;
}
.auth-card .required {
  color: #8b7047;
}
.auth-card .pf-c-alert__icon {
  display: none;
}
.auth-footer {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #ece9ce;
  font-size: 17px;
  letter-spacing: 1px;
  text-shadow: 0 1px 4px #152015;
  pointer-events: none;
}
.auth-fineprint {
  font-size: 17px;
  color: #7a6e53;
  text-align: center;
  margin: 20px 0 0;
}
.auth-separator {
  height: 1px;
  background: #cfbd93;
  margin: 24px 0;
}
.auth-loading {
  text-align: center;
}
.auth-loading .auth-intro {
  margin-bottom: 20px;
}
.auth-loader {
  width: 44px;
  height: 44px;
  margin: 8px auto 24px;
  border: 2px solid #d7c598;
  border-top: 3px solid #5b7545;
  border-radius: 50%;
  animation: auth-spin 1.4s linear infinite;
}
.auth-progress {
  height: 7px;
  background: #e0d3b2;
  border: 1px solid #c7b38a;
  border-radius: 10px;
  overflow: hidden;
  margin: 24px 0 10px;
}
.auth-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4d6b3e, #91a36a);
  transition: width 0.35s;
  width: 0;
}
.auth-step {
  font-size: 18px;
  color: #746747;
  min-height: 25px;
  margin: 0;
}
.auth-status {
  min-height: 0;
  text-align: center;
  font-size: 19px;
  color: #923f30;
}
.auth-status:empty {
  display: none;
}
.auth-form-status {
  font-size: 18px;
  text-align: center;
  color: #617143;
  margin-top: 14px;
  min-height: 0;
}
.auth-form-status:empty {
  display: none;
}
.auth-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.auth-loading-overlay .auth-shell {
  min-height: 100%;
  height: 100%;
}
.auth-loading-overlay.leaving {
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 850px) {
  .auth-shell {
    grid-template-columns: 1fr 380px;
    gap: 30px;
    padding: 42px 26px 66px;
  }
  .auth-card {
    padding: 34px 25px 28px;
  }
  .auth-wordmark {
    font-size: 83px;
  }
  .auth-brand .auth-tagline {
    font-size: 27px;
  }
  .auth-brand .auth-kicker {
    font-size: 15px;
    letter-spacing: 2px;
  }
}
@media (max-width: 650px) {
  .auth-screen {
    background-position: 36% center;
    background-attachment: scroll;
  }
  .auth-screen::before {
    background: #192a224d;
  }
  .auth-shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 32px 20px 36px;
    min-height: 100svh;
  }
  .auth-brand {
    align-self: center;
    text-align: center;
    padding: 0;
  }
  .auth-wordmark {
    font-size: 76px;
    margin: 0;
  }
  .auth-brand .auth-kicker {
    font-size: 13px;
    margin: 0 0 5px;
  }
  .auth-brand .auth-tagline,
  .auth-brand .auth-world-note {
    display: none;
  }
  .auth-card {
    max-width: 410px;
    padding: 34px 26px 26px;
  }
  .auth-card h1,
  .auth-card h2 {
    font-size: 36px;
  }
  .auth-footer {
    position: static;
    font-size: 14px;
    margin: -16px 0 24px;
  }
  .auth-loading-overlay .auth-footer {
    position: absolute;
    bottom: 0;
    margin: 0 0 20px;
  }
  .auth-loading-overlay .auth-shell {
    gap: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .auth-loader {
    animation: none;
    border-style: dotted;
  }
  .auth-screen * {
    transition: none !important;
  }
}
.auth-card .auth-label {
  display: inline-block;
}
.auth-card .auth-field > div > .required {
  vertical-align: top;
  font-size: 16px;
  margin-left: 3px;
}
@media (max-width: 650px) {
  .auth-card .auth-field {
    margin-bottom: 14px;
  }
  .auth-card .auth-intro {
    margin-bottom: 20px;
  }
  .auth-card .auth-eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
  }
  .auth-card h1 {
    font-size: 34px;
  }
}
/* The account journey occupies one viewport, including its footer. */
html:has(> .auth-screen),
html:has(> body.auth-screen),
html:has(> body.auth-boot) {
  height: 100%;
  overflow: hidden;
}
html:has(.auth-loading-overlay) {
  overflow: hidden;
}
body.auth-boot {
  display: block;
  padding: 0;
  margin: 0;
  min-height: 100svh;
  background: #36432b;
  overflow: hidden;
}
body.auth-boot #game {
  width: 100%;
  max-width: none;
  container-type: normal;
}
.auth-screen {
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  color-scheme: light;
  font-synthesis: none;
}
.auth-shell {
  height: 100svh;
  min-height: 0;
  padding-top: 32px;
  padding-bottom: 48px;
  grid-template-columns: 1fr 408px;
}
.auth-card {
  padding: 28px 30px 24px;
}
.auth-card h1,
.auth-card h2 {
  font-size: 36px;
  margin-bottom: 7px;
}
.auth-eyebrow {
  font-size: 13px;
  margin-bottom: 9px;
  letter-spacing: 2px;
}
.auth-intro {
  font-size: 19px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.auth-card .auth-field {
  margin-bottom: 12px;
}
.auth-card label {
  font-size: 19px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.auth-card
  input:not([type='checkbox']):not([type='hidden']):not([type='submit']),
.auth-card select {
  height: 42px;
  font-size: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.auth-button,
.auth-card input[type='submit'] {
  min-height: 43px;
  font-size: 22px;
  padding: 6px 12px;
}
.auth-card .checkbox label {
  margin-bottom: 14px;
  font-size: 17px;
}
.auth-card .subtitle {
  display: none;
}
.auth-card #kc-info {
  padding-top: 14px;
  margin-top: 17px;
  font-size: 18px;
}
.auth-card #kc-registration-container {
  margin-top: 12px;
  font-size: 18px;
}
.auth-card #kc-register-form #kc-form-buttons {
  margin-top: 12px;
}
.auth-fineprint {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 15px;
}
.auth-field-error {
  font-size: 16px;
  line-height: 1.1;
  margin-top: 4px;
}
.auth-alert {
  font-size: 17px;
  padding: 8px 10px;
  margin-bottom: 12px;
}
.auth-form-status {
  font-size: 17px;
  margin: 10px 0 0;
}
.auth-footer {
  bottom: 16px;
  font-size: 15px;
  margin: 0;
}
.auth-card {
  animation: auth-arrive 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.auth-loading-overlay .auth-card {
  animation: none;
}
.auth-submit-cover {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  place-items: center;
  background: #2d3a2826;
  backdrop-filter: blur(2px);
}
.auth-submitting .auth-submit-cover {
  display: grid;
  animation: auth-arrive 0.3s both;
}
.auth-submit-card {
  background: #f4e9cb;
  border: 1px solid #af965e;
  outline: 1px solid #d8c08d;
  outline-offset: -5px;
  padding: 28px 40px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 12px 64px #14221655;
}
.auth-submit-card .auth-loader {
  margin: 0 auto 14px;
  width: 32px;
  height: 32px;
}
.auth-submit-card p {
  font-size: 22px;
  margin: 0;
}
.auth-loading-overlay {
  opacity: 1;
  transition: opacity 0.8s ease;
}
.auth-loading-overlay .auth-screen {
  transition:
    transform 1s ease,
    filter 1s ease;
}
.auth-loading-overlay .auth-card {
  transition:
    transform 0.5s ease,
    opacity 0.4s ease;
}
.auth-loading-overlay.leaving {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.auth-loading-overlay.leaving .auth-screen {
  transform: scale(1.025);
  filter: blur(2px);
}
.auth-loading-overlay.leaving .auth-card {
  opacity: 0;
  transform: translateY(-12px);
}
@keyframes auth-arrive {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 850px) {
  .auth-shell {
    grid-template-columns: 1fr 360px;
    padding: 24px 24px 44px;
  }
  .auth-card {
    padding: 28px 25px 22px;
  }
}
@media (max-width: 650px) {
  .auth-shell {
    padding: 24px 18px 36px;
    gap: 22px;
  }
  .auth-brand .auth-kicker {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .auth-wordmark {
    font-size: 64px;
  }
  .auth-card {
    max-width: 370px;
    padding: 26px 23px 22px;
  }
  .auth-card h1,
  .auth-card h2 {
    font-size: 32px;
  }
  .auth-card .auth-eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .auth-card .auth-intro {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .auth-footer {
    position: fixed;
    bottom: 12px;
    font-size: 12px;
  }
  .auth-loading-overlay .auth-footer {
    bottom: 12px;
    margin: 0;
  }
  .auth-loading-overlay .auth-shell {
    gap: 22px;
  }
}
@media (max-height: 740px) {
  .auth-shell {
    padding-top: 20px;
    padding-bottom: 30px;
    gap: 16px;
  }
  .auth-brand .auth-kicker {
    display: none;
  }
  .auth-wordmark {
    font-size: 56px;
  }
  .auth-card {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .auth-card .auth-eyebrow {
    display: none;
  }
  .auth-card .auth-intro {
    margin-bottom: 12px;
  }
  .auth-card .auth-field {
    margin-bottom: 10px;
  }
  .auth-footer {
    bottom: 8px;
  }
  .auth-fineprint {
    margin-top: 12px;
    font-size: 15px;
  }
}
@media (max-height: 620px) {
  .auth-shell {
    padding: 14px 18px 20px;
    gap: 12px;
  }
  .auth-brand {
    display: none;
  }
  .auth-shell {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .auth-card {
    max-width: 380px;
  }
  .auth-card .auth-intro,
  .auth-footer,
  .auth-fineprint {
    display: none;
  }
  .auth-card h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .auth-card label {
    font-size: 17px;
  }
  .auth-card .auth-field {
    margin-bottom: 8px;
  }
  .auth-card #kc-info {
    margin-top: 10px;
    padding-top: 10px;
  }
  .auth-card .auth-field-error {
    font-size: 14px;
  }
  .auth-card::before {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .auth-card,
  .auth-submit-cover {
    animation: none !important;
  }
  .auth-loading-overlay {
    transition: none !important;
  }
  .auth-loading-overlay.leaving .auth-screen {
    transform: none;
    filter: none;
  }
  .auth-loading-overlay.leaving .auth-card {
    transform: none;
  }
}
.auth-card.auth-frame-card {
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: none;
  animation: none;
}
.auth-frame-card::before {
  display: none;
}
.auth-frame {
  display: block;
  border: 0;
  width: 100%;
  height: 460px;
  transition: height 0.2s ease;
  opacity: 0;
  color-scheme: light;
}
.auth-frame-container {
  position: relative;
}
.auth-frame:not(.ready) {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.auth-frame-status:empty {
  display: none;
}
.auth-frame-wait {
  animation: none;
}
.auth-frame.ready {
  opacity: 1;
}
.auth-frame-status {
  background: #f4e9cb;
  padding: 14px;
  border-radius: 4px;
  text-align: center;
  font-size: 17px;
  margin: 10px 0 0;
}
html.auth-embedded,
html.auth-embedded body.auth-screen {
  background: transparent !important;
  height: auto !important;
  min-height: 0;
  overflow: hidden;
}
.auth-embedded body::before,
.auth-embedded .auth-brand,
.auth-embedded .auth-footer {
  display: none !important;
}
.auth-embedded .auth-shell {
  display: block !important;
  padding: 18px 2px 8px !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: none;
}
.auth-embedded .auth-card {
  max-width: none !important;
  margin: 0;
  animation: none;
  box-shadow: 0 4px 0 #3b3423;
}
.auth-embedded .auth-submit-cover {
  display: none !important;
}
@media (min-width: 651px) and (min-height: 621px) {
  .auth-brand .auth-wordmark {
    font-size: clamp(80px, 8.5vw, 122px);
  }
  .auth-brand .auth-kicker {
    display: block;
  }
}
.auth-embedded [data-page-id='login-register'] .auth-fineprint {
  display: block;
  font-size: 15px;
  line-height: 1.1;
  margin-top: 12px;
}
/* An embedded form sizes to content, so its own iframe height must not select a different layout. */
.auth-embedded .auth-card .auth-eyebrow,
.auth-embedded .auth-card .auth-intro {
  display: none !important;
}
.auth-embedded .auth-card {
  padding: 22px 23px 18px !important;
}
.auth-embedded .auth-card h1 {
  font-size: 28px !important;
  margin: 0 0 14px !important;
}
.auth-embedded .auth-card .auth-field {
  margin-bottom: 10px !important;
}
.auth-embedded .auth-card label {
  font-size: 18px !important;
}
.auth-embedded .auth-card .auth-field-error {
  font-size: 15px !important;
  line-height: 1.1;
}
.auth-embedded .auth-card::before {
  display: none;
}
.auth-embedded .auth-card #kc-info {
  margin-top: 12px;
  padding-top: 12px;
}
@media (max-width: 650px) {
  .auth-screen.auth-compact .auth-brand,
  .auth-screen.auth-compact .auth-footer {
    display: none;
  }
  .auth-screen.auth-compact .auth-shell {
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 0;
  }
}
.auth-embedded.auth-short .auth-card {
  padding-top: 16px !important;
  padding-bottom: 14px !important;
}
.auth-embedded.auth-short .auth-card .auth-fineprint {
  display: none !important;
}
.auth-embedded.auth-short
  .auth-card
  input:not([type='checkbox']):not([type='hidden']):not([type='submit']) {
  height: 38px;
}
.auth-embedded.auth-short .auth-card .auth-field {
  margin-bottom: 8px !important;
}
.auth-loading-overlay:not(.leaving) .auth-card {
  animation: auth-arrive 0.24s ease both;
}
.auth-progress span {
  position: relative;
  overflow: hidden;
}
.auth-progress span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    #fff8d24d 50%,
    transparent 80%
  );
  animation: auth-shimmer 2.4s ease-in-out infinite;
}
.auth-loading-overlay.has-problem .auth-loader {
  animation: none;
  border-color: #bda875;
  color: #8b7047;
  font:
    34px/44px WildkinPixel,
    monospace;
}
.auth-loading-overlay.has-problem .auth-loader::after {
  content: '!';
}
.auth-loading-overlay.has-problem .auth-fineprint {
  display: block;
}
.auth-loading-overlay.has-problem .auth-progress span::after {
  animation: none;
}
@keyframes auth-shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .auth-progress span::after,
  .auth-loading-overlay:not(.leaving) .auth-card {
    animation: none;
  }
}
