/* [project]/apps/wholesale/src/components/auth-scene/auth-scene.css [app-client] (css) */
.auth-scene {
  --as-ink: var(--foreground);
  --as-mute: var(--muted-foreground);
  --as-signal: var(--primary);
  --as-void: var(--background);
  --as-panel: #0000008c;
  --as-line: var(--border);
  color: var(--foreground);
  background: var(--background);
  font-feature-settings: "ss01";
}

.auth-scene ::selection {
  background: var(--primary);
  color: var(--primary-foreground);
}

.auth-scene__signal {
  background: var(--primary);
  vertical-align: middle;
  width: .55em;
  height: .55em;
  margin-left: .35em;
  animation: 2.2s ease-in-out infinite as-pulse;
  display: inline-block;
}

.auth-scene__cascade {
  opacity: 0;
  animation: .6s ease-out forwards as-cascade;
  transform: translateY(12px);
}

.auth-scene__cascade--1 {
  animation-delay: 0s;
}

.auth-scene__cascade--2 {
  animation-delay: 80ms;
}

.auth-scene__cascade--3 {
  animation-delay: .16s;
}

.auth-scene__cascade--4 {
  animation-delay: .24s;
}

.auth-scene__cascade--5 {
  animation-delay: .32s;
}

.auth-scene__cascade--6 {
  animation-delay: .4s;
}

.auth-scene__cascade--7 {
  animation-delay: .48s;
}

.auth-scene__cascade--8 {
  animation-delay: .56s;
}

.auth-scene__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
  outline: none;
}

.auth-scene__submit:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

  50% {
    opacity: .35;
  }
}

@keyframes as-cascade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-scene__signal {
    opacity: 1;
    animation: none;
  }

  .auth-scene__cascade {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/*# sourceMappingURL=apps_wholesale_src_components_auth-scene_auth-scene_0zi5da_.css.map*/