/* [project]/src/app/(auth)/auth.css [app-client] (css) */
:root {
  --brand-cyan: #00b4d8;
  --brand-blue: #0077b6;
  --brand-purple: #6f48b2;
  --surface: #f4f8fd;
  --surface-low: #eaf1f8;
  --on-surface: #1a2332;
  --on-muted: #5a6a7e;
  --gradient: linear-gradient(135deg, #0077b6 0%, #6f48b2 100%);
}

.auth-body {
  font-family: Be Vietnam Pro, sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  min-height: 100vh;
  overflow-x: hidden;
}

.font-manrope {
  font-family: Manrope, sans-serif;
}

.glass-nav {
  background: #f4f8fdbf;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #0077b614;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 9999px;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  width: 100%;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 8px 32px #6f48b22e;
  letter-spacing: .01em;
}

.btn-primary:hover {
  transform: translateY(-1px)scale(1.015);
  box-shadow: 0 12px 40px #6f48b247;
}

.btn-primary:active {
  transform: scale(.98);
}

.btn-primary:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-social {
  background: #fff;
  border: 1.5px solid #0077b61a;
  border-radius: 9999px;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: Be Vietnam Pro, sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: var(--on-surface);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 2px 8px #0000000a;
  flex: 1;
}

.btn-social:hover {
  background: #f0f6ff;
  box-shadow: 0 4px 16px #0077b61a;
  transform: translateY(-1px);
}

.input-field {
  width: 100%;
  padding: .9rem 1.2rem;
  background: #fff;
  border: 1.5px solid #0077b61f;
  border-radius: .875rem;
  font-family: Be Vietnam Pro, sans-serif;
  font-size: .95rem;
  color: var(--on-surface);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.input-field::placeholder {
  color: #aab4c2;
}

.input-field:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px #0077b61a;
}

.input-field.error {
  border-color: #ef4444;
}

.label-text {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-muted);
  margin-bottom: .4rem;
  display: block;
  margin-left: .2rem;
}

.slide-hidden {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.slide-visible {
  opacity: 1;
  z-index: 10;
}

.hero-overlay {
  background: linear-gradient(#00142826 0%, #0014288c 60%, #000a1ed9 100%);
}

.dot-bar {
  height: 3px;
  width: 40px;
  border-radius: 9999px;
  transition: all .5s;
}

.dot-bar.active {
  background: #fffffff2;
  width: 40px;
}

.dot-bar.inactive {
  background: #ffffff4d;
  width: 24px;
}

input[type="checkbox"].auth-checkbox {
  accent-color: var(--brand-blue);
  width: 16px;
  height: 16px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.divider-text {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #aab4c2;
  font-weight: 600;
}

.link-blue {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  font-size: .85rem;
}

.link-blue:hover {
  color: var(--brand-purple);
}

.logo-text {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}

.tagline-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #00b4d826;
  border: 1px solid #00b4d840;
  border-radius: 9999px;
  padding: .25rem .75rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--brand-cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: .55s both fadeUp;
}

.delay-1 {
  animation-delay: 80ms;
}

.delay-2 {
  animation-delay: .16s;
}

.delay-3 {
  animation-delay: .24s;
}

.delay-4 {
  animation-delay: .32s;
}

.delay-5 {
  animation-delay: .4s;
}

@keyframes modalIn {
  0% {
    transform: scale(.95);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pw-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aab4c2;
  font-size: 1.1rem;
  transition: color .2s;
  user-select: none;
}

.pw-toggle:hover {
  color: var(--brand-blue);
}

.hero-noise:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 5;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1dae6;
  transition: all .3s;
}

.step-dot.active {
  background: var(--brand-blue);
  width: 24px;
  border-radius: 9999px;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
}

.error-msg {
  color: #ef4444;
  font-size: .78rem;
  margin-top: .3rem;
  margin-left: .2rem;
}

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


/*# sourceMappingURL=src_app_%28auth%29_auth_a8a4ac.css.map*/
