:root {
  color-scheme: dark;
  --black: #000;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.48);
  --dim: rgba(255, 255, 255, 0.24);
  --line: rgba(255, 255, 255, 0.2);
  --panel: rgba(0, 0, 0, 0.78);
  --danger: rgba(255, 0, 0, 0.62);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

button,
input {
  appearance: none;
  font: inherit;
  letter-spacing: 0;
}

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

::selection {
  background: var(--white);
  color: var(--black);
}

body::before,
body::after,
.signal-frame,
.damage-flash {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before,
body::after {
  content: "";
}

body::before {
  z-index: -3;
  background: var(--black) center / cover no-repeat;
}

.gate-page::before {
  background-image: url("background_haunted.gif");
  filter: grayscale(1) contrast(1.24) brightness(0.72);
  opacity: 0.7;
}

.haunted-page::before {
  background-image: url("background_haunted.gif");
  filter: grayscale(1) contrast(1.7) brightness(0.42);
  opacity: 0.18;
}

body::after {
  z-index: -2;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.78)),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 4px
    );
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.96);
}

.signal-frame {
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 18px;
  opacity: 0.86;
}

.signal-frame::before,
.signal-frame::after {
  position: absolute;
  width: 72px;
  height: 1px;
  background: var(--white);
  content: "";
  opacity: 0.42;
}

.signal-frame::before {
  top: 18px;
  left: 18px;
}

.signal-frame::after {
  right: 18px;
  bottom: 18px;
}

.damage-flash {
  z-index: 9;
  background:
    radial-gradient(circle at center, rgba(255, 0, 0, 0.12), rgba(170, 0, 0, 0.34)),
    rgba(255, 0, 0, 0.32);
  mix-blend-mode: screen;
  opacity: 0;
}

.gate-page.is-damaged .damage-flash {
  animation: damage-flash 520ms steps(2, end) both;
}

.gate-page,
.haunted-page {
  isolation: isolate;
}

.gate-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.gate-shell,
.void-shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.gate-shell {
  display: grid;
  justify-items: center;
  align-self: center;
  padding: 88px 0 48px;
}

.language-mark,
.domain-line,
.access-note,
.void-whisper {
  margin: 0;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.language-mark {
  margin-bottom: 16px;
  color: var(--dim);
}

.domain-line {
  margin-bottom: 15px;
}

.brand,
.void-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  color: var(--white);
  font-weight: 950;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.brand {
  font-size: 6.4rem;
}

.manifesto,
.void-copy {
  max-width: 42rem;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.access-note {
  margin-top: 22px;
}

.access-form {
  width: min(100%, 440px);
  margin: 42px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  backdrop-filter: blur(5px);
}

.field-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
}

.field-row input {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--panel);
  color: var(--white);
  padding: 0 18px;
  font-size: 1.04rem;
  font-weight: 800;
  text-align: center;
  caret-color: var(--white);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field-row input:focus {
  border-color: var(--white);
  box-shadow:
    0 0 0 1px var(--white),
    0 0 34px rgba(255, 255, 255, 0.16);
}

.field-row input::placeholder {
  color: var(--dim);
}

.winged-action {
  position: relative;
  display: grid;
  width: 100%;
  margin-top: 12px;
  isolation: isolate;
}

.enter-button {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--white);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  padding: 0 20px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 120ms ease;
}

.enter-button::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.14), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px,
      transparent 8px
    );
  content: "";
  opacity: 0.42;
  transform: translateX(-100%);
  animation: button-current 2.6s linear infinite;
}

.enter-button span {
  position: relative;
  z-index: 1;
}

.enter-button:hover,
.enter-button:focus-visible {
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.18);
}

.enter-button:disabled {
  cursor: default;
}

.enter-button:active {
  transform: translateY(1px);
}

.enter-button:hover::before,
.enter-button:focus-visible::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 8px
    );
}

.wing {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 172px;
  height: 118px;
  pointer-events: none;
  transform-origin: right center;
  transform-style: preserve-3d;
  animation: wing-flap 1.22s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.wing-left {
  right: calc(100% - 14px);
  transform-origin: right center;
}

.wing-right {
  left: calc(100% - 14px);
  transform-origin: left center;
  animation-name: wing-flap-right;
}

.wing-inner {
  position: absolute;
  inset: 0;
  transform-origin: right center;
}

.wing-right .wing-inner {
  transform: scaleX(-1);
  transform-origin: center;
}

.wing-shadow,
.wing-bone,
.wing-coverts,
.wing-joint,
.feather {
  position: absolute;
  display: block;
}

.wing-shadow {
  right: 16px;
  bottom: 22px;
  width: 132px;
  height: 42px;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(255, 255, 255, 0.16), transparent 62%),
    radial-gradient(ellipse at 28% 60%, rgba(0, 0, 0, 0.76), transparent 72%);
  filter: blur(4px);
  opacity: 0.88;
  transform: rotate(-6deg);
}

.wing-bone {
  right: 5px;
  top: 51px;
  width: 92px;
  height: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 70% 0 0 0;
  opacity: 0.74;
  transform: rotate(-8deg);
}

.wing-coverts {
  right: 16px;
  top: 37px;
  width: 96px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-right: 0;
  border-radius: 78% 18% 72% 34%;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.035) 46%, rgba(0, 0, 0, 0.34)),
    repeating-linear-gradient(98deg, transparent 0, transparent 10px, rgba(255, 255, 255, 0.08) 11px, transparent 13px);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 255, 255, 0.1);
  clip-path: polygon(100% 4%, 78% 10%, 36% 22%, 2% 58%, 28% 96%, 72% 86%, 100% 58%);
  transform: rotate(-5deg);
}

.wing-joint {
  right: -1px;
  top: 48px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.14) 32%, rgba(0, 0, 0, 0.72) 72%);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    inset 0 0 10px rgba(0, 0, 0, 0.8);
}

.feather {
  right: var(--right);
  top: var(--top);
  width: var(--width);
  height: var(--height);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-right: 0;
  border-radius: 90% 18% 82% 34%;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.045) 32%, rgba(0, 0, 0, 0.7) 88%),
    repeating-linear-gradient(96deg, transparent 0, transparent 7px, rgba(255, 255, 255, 0.09) 8px, transparent 10px);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.055),
    0 0 12px rgba(255, 255, 255, 0.1);
  clip-path: polygon(100% 4%, 74% 12%, 0 50%, 72% 88%, 100% 96%, 86% 50%);
  transform-origin: right center;
  transform: rotate(var(--rotate));
  animation: feather-lift 1.22s ease-in-out infinite;
  animation-delay: var(--delay);
}

.primary {
  opacity: 0.98;
}

.secondary {
  opacity: 0.82;
  filter: brightness(0.82);
}

.primary-1 {
  --right: 66px;
  --top: 13px;
  --width: 104px;
  --height: 18px;
  --rotate: -34deg;
  --hit-rotate: -44deg;
  --delay: -120ms;
}

.primary-2 {
  --right: 54px;
  --top: 28px;
  --width: 116px;
  --height: 19px;
  --rotate: -22deg;
  --hit-rotate: -34deg;
  --delay: -240ms;
}

.primary-3 {
  --right: 42px;
  --top: 45px;
  --width: 126px;
  --height: 20px;
  --rotate: -9deg;
  --hit-rotate: -20deg;
  --delay: -360ms;
}

.primary-4 {
  --right: 34px;
  --top: 63px;
  --width: 118px;
  --height: 19px;
  --rotate: 7deg;
  --hit-rotate: 18deg;
  --delay: -480ms;
}

.primary-5 {
  --right: 34px;
  --top: 79px;
  --width: 96px;
  --height: 18px;
  --rotate: 22deg;
  --hit-rotate: 36deg;
  --delay: -600ms;
}

.secondary-1 {
  --right: 20px;
  --top: 25px;
  --width: 76px;
  --height: 15px;
  --rotate: -14deg;
  --hit-rotate: -24deg;
  --delay: -180ms;
}

.secondary-2 {
  --right: 12px;
  --top: 43px;
  --width: 82px;
  --height: 16px;
  --rotate: -1deg;
  --hit-rotate: -10deg;
  --delay: -300ms;
}

.secondary-3 {
  --right: 13px;
  --top: 61px;
  --width: 74px;
  --height: 15px;
  --rotate: 13deg;
  --hit-rotate: 25deg;
  --delay: -420ms;
}

.access-form.is-denied .winged-action {
  animation: wing-hit 420ms linear both;
}

.access-form.is-denied .wing {
  animation-duration: 160ms;
}

.access-form.is-denied .feather {
  animation-name: feather-hit;
  animation-duration: 260ms;
  animation-delay: 0s;
}

.gate-page.is-unlocking .gate-shell,
.gate-page.is-unlocking .contact-rail {
  animation: ui-takeoff 900ms cubic-bezier(0.18, 0.84, 0.18, 1) forwards;
}

.gate-page.is-unlocking .wing {
  animation-duration: 150ms;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.48));
}

.gate-page.is-unlocking .enter-button {
  box-shadow:
    0 0 34px rgba(255, 255, 255, 0.28),
    0 0 90px rgba(255, 255, 255, 0.16);
}

.access-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.noscript {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.access-form.is-denied {
  animation: deny-shake 260ms linear both;
}

.access-form.is-denied .access-status {
  color: var(--white);
}

.access-form.is-denied .field-row input {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.7),
    0 0 36px var(--danger);
}

.access-form.is-denied .enter-button {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 0 44px var(--danger);
}

.access-form.is-unlocking {
  animation: signal-break 740ms steps(2, end) both;
}

.contact-rail,
.edge-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: center;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.contact-rail {
  padding: 0 0 30px;
}

.contact-rail a,
.edge-links a {
  opacity: 0.86;
  padding: 2px 0;
}

.contact-rail a:hover,
.contact-rail a:focus-visible,
.edge-links a:hover,
.edge-links a:focus-visible {
  opacity: 1;
}

.haunted-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.void-shell {
  display: grid;
  justify-items: center;
  padding: 74px 0 86px;
}

.void-title {
  font-size: 9.4rem;
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.78),
    -2px 0 0 rgba(255, 255, 255, 0.32),
    0 0 42px rgba(255, 255, 255, 0.16);
}

.void-copy {
  margin-top: 34px;
}

.void-whisper {
  margin-top: 18px;
  color: var(--dim);
}

.edge-links {
  position: fixed;
  right: 20px;
  bottom: 24px;
  left: 20px;
  width: auto;
  justify-content: center;
}

.glitch::before,
.glitch::after,
.glitch-heavy::before,
.glitch-heavy::after {
  position: absolute;
  inset: 0;
  color: var(--white);
  content: attr(data-text);
  pointer-events: none;
  overflow: hidden;
}

.glitch::before,
.glitch-heavy::before {
  transform: translate(2px, 0);
  clip-path: inset(10% 0 54% 0);
  opacity: 0.72;
  animation: glitch-top 2.6s infinite steps(1, end);
}

.glitch::after,
.glitch-heavy::after {
  transform: translate(-2px, 0);
  clip-path: inset(58% 0 10% 0);
  opacity: 0.5;
  animation: glitch-bottom 2.2s infinite steps(1, end);
}

.glitch-heavy {
  animation: haunted-pulse 3.8s infinite steps(2, end);
}

.glitch-heavy::before {
  animation-duration: 900ms;
}

.glitch-heavy::after {
  animation-duration: 780ms;
}

@keyframes glitch-top {
  0%,
  12%,
  100% {
    clip-path: inset(10% 0 54% 0);
    transform: translate(2px, 0);
  }

  13% {
    clip-path: inset(2% 0 76% 0);
    transform: translate(-5px, -1px);
  }

  15% {
    clip-path: inset(28% 0 45% 0);
    transform: translate(7px, 1px);
  }

  44% {
    clip-path: inset(6% 0 68% 0);
    transform: translate(4px, -2px);
  }

  46% {
    clip-path: inset(22% 0 50% 0);
    transform: translate(-3px, 2px);
  }
}

@keyframes glitch-bottom {
  0%,
  18%,
  100% {
    clip-path: inset(58% 0 10% 0);
    transform: translate(-2px, 0);
  }

  19% {
    clip-path: inset(72% 0 2% 0);
    transform: translate(6px, 2px);
  }

  22% {
    clip-path: inset(48% 0 22% 0);
    transform: translate(-8px, -1px);
  }

  68% {
    clip-path: inset(64% 0 8% 0);
    transform: translate(5px, 0);
  }

  70% {
    clip-path: inset(38% 0 34% 0);
    transform: translate(-6px, 2px);
  }
}

@keyframes haunted-pulse {
  0%,
  100% {
    opacity: 1;
  }

  41% {
    opacity: 0.84;
  }

  43% {
    opacity: 1;
  }

  68% {
    opacity: 0.62;
  }

  70% {
    opacity: 1;
  }
}

@keyframes deny-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-8px);
  }

  50% {
    transform: translateX(7px);
  }

  75% {
    transform: translateX(-3px);
  }
}

@keyframes signal-break {
  0% {
    filter: invert(0);
  }

  35% {
    filter: invert(1);
  }

  55% {
    filter: invert(0);
  }

  75% {
    filter: invert(1);
  }

  100% {
    filter: invert(0);
  }
}

@keyframes button-current {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes wing-flap {
  0%,
  100% {
    transform: translateY(-50%) rotateZ(-8deg) rotateX(0) rotateY(0) scaleY(1);
  }

  34% {
    transform: translateY(-62%) rotateZ(17deg) rotateX(8deg) rotateY(46deg) scaleY(0.68);
  }

  64% {
    transform: translateY(-45%) rotateZ(-24deg) rotateX(-8deg) rotateY(-22deg) scaleY(1.12);
  }

  82% {
    transform: translateY(-52%) rotateZ(-3deg) rotateX(2deg) rotateY(8deg) scaleY(0.96);
  }
}

@keyframes wing-flap-right {
  0%,
  100% {
    transform: translateY(-50%) rotateZ(8deg) rotateX(0) rotateY(0) scaleY(1);
  }

  34% {
    transform: translateY(-62%) rotateZ(-17deg) rotateX(8deg) rotateY(-46deg) scaleY(0.68);
  }

  64% {
    transform: translateY(-45%) rotateZ(24deg) rotateX(-8deg) rotateY(22deg) scaleY(1.12);
  }

  82% {
    transform: translateY(-52%) rotateZ(3deg) rotateX(2deg) rotateY(-8deg) scaleY(0.96);
  }
}

@keyframes feather-lift {
  0%,
  100% {
    transform: rotate(var(--rotate)) translateY(0) scaleX(1);
  }

  34% {
    transform: rotate(calc(var(--rotate) - 7deg)) translateY(-4px) scaleX(0.94);
  }

  64% {
    transform: rotate(calc(var(--rotate) + 8deg)) translateY(3px) scaleX(1.04);
  }

  82% {
    transform: rotate(calc(var(--rotate) - 2deg)) translateY(-1px) scaleX(0.98);
  }
}

@keyframes feather-hit {
  0%,
  100% {
    transform: rotate(var(--rotate)) translate(0, 0);
  }

  22% {
    transform: rotate(var(--hit-rotate)) translate(-6px, 2px);
  }

  48% {
    transform: rotate(calc(var(--rotate) - 12deg)) translate(8px, -2px);
  }

  76% {
    transform: rotate(calc(var(--rotate) + 6deg)) translate(-3px, 1px);
  }
}

@keyframes wing-hit {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }

  18% {
    transform: translate(-10px, 2px) rotate(-2deg);
  }

  36% {
    transform: translate(12px, -3px) rotate(2deg);
  }

  54% {
    transform: translate(-7px, 1px) rotate(-1deg);
  }

  72% {
    transform: translate(6px, 0) rotate(1deg);
  }
}

@keyframes damage-flash {
  0% {
    opacity: 0;
  }

  12% {
    opacity: 0.95;
  }

  28% {
    opacity: 0.34;
  }

  42% {
    opacity: 0.78;
  }

  100% {
    opacity: 0;
  }
}

@keyframes ui-takeoff {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  36% {
    opacity: 1;
    transform: translateY(-18px) scale(1.02);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-120vh) scale(0.86);
    filter: blur(8px);
  }
}

@media (max-width: 720px) {
  .signal-frame {
    margin: 10px;
  }

  .signal-frame::before,
  .signal-frame::after {
    width: 54px;
  }

  .gate-shell,
  .void-shell {
    width: min(100% - 28px, 560px);
  }

  .gate-shell {
    padding: 50px 0 32px;
  }

  .brand {
    font-size: 3.55rem;
    line-height: 0.86;
  }

  .void-title {
    font-size: 4.2rem;
  }

  .manifesto,
  .void-copy {
    font-size: 0.92rem;
  }

  .manifesto {
    margin-top: 24px;
  }

  .access-note {
    margin-top: 18px;
  }

  .access-form {
    margin-top: 30px;
    padding-top: 22px;
  }

  .wing {
    display: none;
  }

  .field-row input,
  .enter-button {
    min-height: 58px;
  }

  .contact-rail,
  .edge-links {
    width: min(100% - 28px, 560px);
    gap: 8px 14px;
    font-size: 0.66rem;
  }

  .contact-rail {
    padding-bottom: 28px;
  }

  .edge-links {
    position: static;
    margin: 0 auto 22px;
  }
}

@media (max-width: 380px) {
  .signal-frame {
    margin: 9px;
  }

  .gate-shell,
  .void-shell {
    width: min(100% - 22px, 560px);
  }

  .gate-shell {
    padding-top: 44px;
  }

  .language-mark,
  .domain-line,
  .access-note,
  .void-whisper {
    font-size: 0.7rem;
  }

  .brand,
  .void-title {
    font-size: 2.95rem;
  }

  .manifesto,
  .void-copy {
    font-size: 0.86rem;
  }

  .field-row input {
    padding: 0 14px;
  }

  .enter-button {
    padding: 0 16px;
    white-space: normal;
  }

  .contact-rail,
  .edge-links {
    width: min(100% - 24px, 560px);
    gap: 8px 12px;
    font-size: 0.64rem;
  }
}

@media (max-width: 720px) and (max-height: 760px) {
  .gate-shell {
    padding-top: 40px;
    padding-bottom: 26px;
  }

  .access-form {
    margin-top: 26px;
  }
}

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