/* ════════════════════════════════════════════════
   SunnyPlaya · Auth — Luxury Resort
   White · Navy · Gold Sand
   ════════════════════════════════════════════════ */

:root {
  --white:    #ffffff;
  --navy:     #0b2545;
  --navy-700: #13355f;
  --gold:     #ddb967;
  --gold-soft:#e8cf94;
  --sand:     #faf3e0;
  --ink:      #111111;

  --muted:    #6a7589;
  --line:     rgba(11, 37, 69, 0.10);
  --line-strong: rgba(11, 37, 69, 0.20);
  --error:    #c0392b;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-card: 0 30px 70px -28px rgba(11, 37, 69, 0.28);
  --shadow-soft: 0 2px 14px rgba(11, 37, 69, 0.06);

  --t: 0.22s cubic-bezier(0.22, 1, 0.36, 1);

  --font:    "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
}

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

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body.auth-page {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  min-height: 100dvh;
  line-height: 1.5;
}

/* ── Shell ─────────────────────────────────────── */

.auth-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100dvh;
}

/* ── Form side ─────────────────────────────────── */

.auth-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.25rem, 3vh, 2.5rem) clamp(1.5rem, 4vw, 3.5rem);
  min-height: 100dvh;
  overflow-y: auto;
}

.auth-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.auth-card--wide { max-width: 440px; }

/* ── Brand ─────────────────────────────────────── */

.auth-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: clamp(1.4rem, 4vh, 2.4rem);
}

.auth-brand__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.auth-brand__logo {
  height: 68px;
  width: auto;
  max-width: 100%;
  display: block;
}

.auth-brand__sun {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--gold);
}

.auth-brand__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1;
}

.auth-brand__tagline { display: none; }

/* ── Heading ───────────────────────────────────── */

.auth-heading {
  margin-bottom: 1.35rem;
}

.auth-heading__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.auth-heading__eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.auth-heading h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.auth-heading p {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 34ch;
}

/* ── Messages ──────────────────────────────────── */

.auth-messages { list-style: none; margin-bottom: 1rem; }

.auth-message {
  padding: 0.7rem 0.95rem;
  border-radius: var(--r-sm);
  font-size: 0.84rem;
  margin-bottom: 0.5rem;
}

.auth-message--error   { background: #fdecea; color: var(--error); border: 1px solid #f3c5bf; }
.auth-message--success { background: #eef7ef; color: #1e7a45; border: 1px solid #bfe0c8; }
.auth-message--info    { background: var(--sand); color: var(--navy); border: 1px solid rgba(221,185,103,0.45); }

/* ── Form ──────────────────────────────────────── */

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-form__fields { display: flex; flex-direction: column; gap: 0.9rem; }

.auth-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.auth-field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.auth-field--span-2 { grid-column: 1 / -1; }

.auth-field__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.auth-input-wrap { position: relative; display: flex; align-items: center; }

.auth-input-wrap__icon {
  position: absolute;
  left: 0.95rem;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--muted);
  pointer-events: none;
}
.auth-input-wrap__icon svg { width: 100%; height: 100%; display: block; }

.auth-input {
  width: 100%;
  height: 2.8rem;
  padding: 0 1rem 0 2.7rem;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--ink);
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.auth-input::placeholder { color: #9aa3b2; }

.auth-input:focus {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(221, 185, 103, 0.22);
}

/* fields without a leading icon */
.auth-input-wrap:not(:has(.auth-input-wrap__icon)) .auth-input { padding-left: 1rem; }
/* room for the password toggle */
.auth-input-wrap:has(.auth-toggle-password) .auth-input { padding-right: 2.9rem; }

/* OTP / access-code fields (icon sits outside centered text) */
.auth-input-wrap:has(.auth-input--code) .auth-input {
  padding-left: 1rem;
  padding-right: 1rem;
}

.auth-input--code {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
}

.auth-field:has(.auth-field__error) .auth-input {
  border-color: #e0a8a8;
  background: #fffafa;
}

.auth-field:has(.auth-field__error) .auth-input:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

/* Booking access gate — full-width polished inputs */
.auth-page--access .auth-form__fields {
  gap: 1rem;
}

.auth-page--access .auth-input-wrap {
  width: 100%;
}

.auth-page--access .auth-input {
  height: 3rem;
  font-size: 0.95rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(11, 37, 69, 0.04);
}

.auth-page--access .auth-input-wrap__icon {
  left: 1.05rem;
  width: 1.1rem;
  height: 1.1rem;
  color: #8a94a6;
}

.auth-page--access .auth-input:focus {
  box-shadow: 0 0 0 3px rgba(221, 185, 103, 0.22), 0 1px 2px rgba(11, 37, 69, 0.04);
}

.auth-toggle-password {
  position: absolute;
  right: 0.7rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0.35rem;
  line-height: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color var(--t);
}
.auth-toggle-password:hover { color: var(--navy); }
.auth-toggle-password svg { width: 1.15rem; height: 1.15rem; display: none; }
.auth-toggle-password svg.is-visible { display: block; }

.auth-field__error { font-size: 0.72rem; color: var(--error); }
.auth-field__help  { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
.auth-field__help ul { list-style: none; margin-top: 0.2rem; }

/* ── Options row ───────────────────────────────── */

.auth-form__options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: -0.2rem;
}

.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.auth-checkbox input[type="checkbox"] {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  background: var(--white);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--t);
}
.auth-checkbox input[type="checkbox"]:checked { background: var(--navy); border-color: var(--navy); }
.auth-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 4px; height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ── Links ─────────────────────────────────────── */

.auth-link {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color var(--t);
}
.auth-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.auth-link:hover { color: var(--gold); }
.auth-link:hover::after { transform: scaleX(1); }

/* ── Buttons ───────────────────────────────────── */

.auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  height: 2.8rem;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t), box-shadow var(--t), transform 0.08s ease, color var(--t);
}
.auth-btn:active { transform: scale(0.99); }

.auth-btn--primary { background: var(--navy); color: var(--white); }
.auth-btn--primary:hover {
  background: var(--navy-700);
  box-shadow: 0 10px 26px -10px rgba(11, 37, 69, 0.5);
}

.auth-btn--outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line-strong);
}
.auth-btn--outline:hover { background: var(--sand); border-color: var(--gold); }

.auth-btn--google {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-weight: 500;
}
.auth-btn--google:hover { background: #fbfbfa; border-color: var(--line-strong); }
.auth-btn--google:disabled { opacity: 0.55; cursor: not-allowed; }
.auth-btn__icon { width: 1.15rem; height: 1.15rem; }

.auth-btn-row { display: flex; gap: 0.75rem; }
.auth-btn-row .auth-btn { flex: 1; }

/* ── Divider ───────────────────────────────────── */

.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-divider span {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Footer ────────────────────────────────────── */

.auth-footer {
  margin-top: 1.25rem;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
}
.auth-footer--inline { margin-top: 0.5rem; }

.auth-inline-form {
  margin-top: 0.45rem;
  text-align: center;
}

.auth-link--button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.auth-form__note { text-align: center; font-size: 0.72rem; color: var(--muted); margin-top: 0.25rem; }

/* ── Back link ─────────────────────────────────── */

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1.1rem;
  transition: color var(--t);
  font-family: var(--font);
}
.auth-back:hover { color: var(--navy); }
.auth-back svg { width: 1rem; height: 1rem; }

/* ── Form errors ───────────────────────────────── */

.auth-form-errors {
  background: #fdecea;
  border: 1px solid #f3c5bf;
  border-radius: var(--r-sm);
  padding: 0.7rem 0.95rem;
}
.auth-form-errors li { list-style: none; font-size: 0.84rem; color: var(--error); }

/* ── Status / success states ───────────────────── */

.auth-status { text-align: center; }
.auth-status__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 1.4rem;
}
.auth-status__icon svg { width: 1.7rem; height: 1.7rem; }
.auth-status__icon--success { background: var(--sand); color: var(--gold); }
.auth-status__icon--info    { background: var(--sand); color: var(--navy); }
.auth-status__icon--warning { background: #fdf6e3; color: #b07d12; }
.auth-status__icon--error   { background: #fdecea; color: var(--error); }

.auth-status .auth-heading { text-align: center; margin-bottom: 1.4rem; }
.auth-status .auth-heading__eyebrow { justify-content: center; }
.auth-status .auth-heading p { margin-left: auto; margin-right: auto; }
.auth-status .auth-btn { margin: 0 auto; }
.auth-status .auth-footer { text-align: center; }

/* ── Wizard steps ──────────────────────────────── */

.auth-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.auth-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.auth-step__dot {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1.5px solid var(--line-strong);
  color: var(--muted);
  background: var(--white);
  transition: var(--t);
  flex-shrink: 0;
}
.auth-step__bar {
  width: 1.6rem;
  height: 1.5px;
  background: var(--line-strong);
  transition: var(--t);
}
.auth-step.is-active .auth-step__dot { border-color: var(--navy); color: var(--navy); }
.auth-step.is-done .auth-step__dot {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.auth-step.is-done .auth-step__bar { background: var(--gold); }

.auth-wizard-pane { display: none; }
.auth-wizard-pane.is-active { display: flex; flex-direction: column; gap: 0.9rem; }
.auth-wizard-pane.is-active.is-entering { animation: paneIn 0.4s var(--t); }

@keyframes paneIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ════════════════════════════════════════════════
   Visual / image side
   ════════════════════════════════════════════════ */

.auth-visual {
  position: relative;
  display: none;
  background: transparent;
}

.auth-visual__card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.auth-visual__slides { position: absolute; inset: 0; }

.auth-visual__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease, transform 7s ease;
  transform: scale(1.08);
}
.auth-visual__slide.is-active { opacity: 1; transform: scale(1); }

.auth-visual__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11,37,69,0.30) 0%, rgba(11,37,69,0.0) 30%, rgba(11,37,69,0.38) 62%, rgba(11,37,69,0.84) 100%);
}

.auth-visual__brand {
  position: absolute;
  top: clamp(1.8rem, 4vh, 2.6rem);
  left: clamp(2rem, 4vw, 3.5rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
}
.auth-visual__brand img { height: 42px; width: auto; display: block; }
.auth-visual__brand svg { width: 1.6rem; height: 1.6rem; color: var(--gold); }
.auth-visual__brand span {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.auth-visual__content {
  position: absolute;
  left: clamp(2rem, 4vw, 3.5rem);
  right: clamp(2rem, 4vw, 3.5rem);
  bottom: clamp(2.5rem, 6vh, 4rem);
  z-index: 3;
  color: var(--white);
}

.auth-visual__headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 16ch;
}

.auth-visual__sub {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  max-width: 40ch;
  line-height: 1.6;
}

.auth-visual__dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.8rem;
}
.auth-visual__dot {
  width: 1.6rem;
  height: 2px;
  border-radius: 2px;
  border: none;
  padding: 0;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--t);
}
.auth-visual__dot.is-active { background: var(--gold); width: 2.6rem; }

/* ── Mobile hero (shown only on small) ─────────── */

.auth-mobile-hero { display: none; }

/* ── Animations ────────────────────────────────── */

.fade-in { animation: fadeUp 0.45s var(--t) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════
   Responsive
   ════════════════════════════════════════════════ */

/* DESKTOP — split */
@media (min-width: 980px) {
  .auth-layout { grid-template-columns: 1fr 1.05fr; }
  .auth-visual { display: block; }
  .auth-visual__card { border-radius: 20px 0 0 20px; }
  .auth-main { align-items: flex-start; }
  .auth-card { margin: 0 auto; }
}

/* MOBILE — card on blurred navy hero */
@media (max-width: 979px) {
  body.auth-page { background: var(--navy); }

  .auth-main {
    justify-content: flex-start;
    padding: 0;
    min-height: 100dvh;
  }

  .auth-main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--navy);
    background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 22px);
    z-index: 0;
  }

  .auth-mobile-hero {
    display: block;
    position: relative;
    z-index: 1;
    height: 25vh;
    min-height: 178px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
  }
  .auth-mobile-hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  .auth-mobile-hero__scrim {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, rgba(8,26,49,0.62) 0%, rgba(8,26,49,0.32) 45%, rgba(8,26,49,0.6) 100%);
  }
  .auth-mobile-hero__brand {
    position: absolute;
    inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse 60% 55% at center, rgba(8,26,49,0.5) 0%, rgba(8,26,49,0) 72%);
  }
  .auth-mobile-hero__brand img,
  .auth-mobile-hero__logo {
    height: 84px;
    width: auto;
    display: block;
    filter: drop-shadow(0 3px 14px rgba(8, 26, 49, 0.65));
  }

  .auth-card {
    position: relative;
    z-index: 2;
    margin-top: -2rem;
    background: var(--white);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 1.5rem 1.3rem 1.6rem;
    max-width: 520px;
    box-shadow: var(--shadow-card);
    flex: 1;
  }

  /* hide the in-card desktop brand on mobile (mobile-hero shows it) */
  .auth-card > .auth-brand { display: none; }

  .auth-heading h1 { font-size: 1.9rem; }

  body.auth-page--register .auth-heading h1 { font-size: 1.45rem; }
  body.auth-page--register .auth-heading { margin-bottom: 0.7rem; }
  body.auth-page--register .auth-form__grid { gap: 0.7rem; }
  body.auth-page--register .auth-field__help { display: none; }

  .auth-mobile-hero--compact { height: 16vh; min-height: 116px; }
}

@media (max-width: 380px) {
  .auth-form__grid { grid-template-columns: 1fr; }
  .auth-field--span-2 { grid-column: 1; }
}

/* ── Booking access success screen ─────────────────────────────────────── */

.auth-page--access-success .auth-card {
  max-width: 420px;
  align-items: center;
  text-align: center;
}

.auth-page--access-success .auth-brand {
  display: none;
}

.access-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: clamp(2rem, 8vh, 4rem) 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.access-success.is-leaving {
  opacity: 0;
  transform: scale(0.98);
}

.access-success__scene {
  width: 11.5rem;
  height: 11.5rem;
  opacity: 0;
  transform: scale(0.88);
  animation: access-success-scene-in 0.6s cubic-bezier(0.22, 1.1, 0.36, 1) forwards;
}

.access-success__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.access-success__shadow {
  fill: rgba(11, 37, 69, 0.08);
  opacity: 0;
  animation: access-success-shadow-in 0.5s ease 0.15s forwards;
}

.access-success__globe {
  opacity: 0;
  transform-origin: 100px 102px;
  animation: access-success-globe-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards,
             access-success-globe-spin 12s linear 0.65s infinite;
}

.access-success__meridians {
  opacity: 0;
  transform-origin: 100px 102px;
  animation: access-success-meridians-in 0.45s ease 0.35s forwards,
             access-success-globe-spin 14s linear 0.8s infinite;
}

.access-success__lands {
  opacity: 0;
  transform-origin: 100px 102px;
  animation: access-success-lands-in 0.5s ease 0.45s forwards,
             access-success-globe-spin 14s linear 0.95s infinite;
}

.access-success__trail {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  opacity: 0.55;
  animation: access-success-trail-draw 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.access-success__plane {
  opacity: 0;
  animation: access-success-plane-in 0.35s ease 0.85s forwards;
}

.access-success__text {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(8px);
  animation: access-success-text 0.45s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

@keyframes access-success-scene-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes access-success-shadow-in {
  to { opacity: 1; }
}

@keyframes access-success-globe-in {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes access-success-meridians-in {
  to { opacity: 1; }
}

@keyframes access-success-lands-in {
  to { opacity: 1; }
}

@keyframes access-success-globe-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes access-success-trail-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes access-success-plane-in {
  to { opacity: 1; }
}

@keyframes access-success-text {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
