/* [project]/app/(auth)/auth.css [app-client] (css) */
.auth-wrap {
  --bg: #f8f7f4;
  --surface: #fff;
  --surface-2: #e8edef;
  --border: #e4e4e0;
  --border-strong: #c8c8c4;
  --text: #17384c;
  --text-2: #3d5666;
  --muted: #7a95a0;
  --muted-2: #a8bfca;
  --tl: #35b5a8;
  --t10: #eaf8f6;
  --t25: #b8eae7;
  --nv2: #1f4a63;
  --primary: #ff540d;
  --primary-600: #e84b00;
  --primary-50: #fff2ec;
  --ok: #0a6b64;
  --ok-50: #e4f6f2;
  --ok-100: #b8eae7;
  --warn: #7d6608;
  --warn-50: #fef8e6;
  --danger: #922b21;
  --danger-50: #fdecec;
  --danger-100: #f5c6c0;
  --shadow-md: 0 4px 12px #17384c14, 0 2px 4px #17384c0d;
  --radius: 10px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: var(--font-dm-sans), system-ui, sans-serif;
  --font-display: var(--font-dm-serif), Georgia, serif;
  --mono: var(--font-jetbrains-mono), ui-monospace, monospace;
  width: 100%;
  height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  overflow: hidden;
}

.auth-wrap * {
  box-sizing: border-box;
}

.brand-panel {
  background: linear-gradient(155deg, #0d2031 0%, #17384c 55%, #1f4a63 100%);
  flex-direction: column;
  flex-shrink: 0;
  width: 440px;
  padding: 52px 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.brand-panel:before {
  content: "";
  pointer-events: none;
  background-image: radial-gradient(circle, #ffffff0e 1px, #0000 1px);
  background-size: 28px 28px;
  position: absolute;
  inset: 0;
}

.brand-panel:after {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #35b5a82e 0%, #0000 65%);
  border-radius: 50%;
  width: 380px;
  height: 380px;
  position: absolute;
  bottom: -100px;
  left: -80px;
}

.brand-top {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  display: flex;
  position: relative;
}

.brand-logo {
  flex-shrink: 0;
  width: auto;
  height: 34px;
}

.brand-lockup {
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  display: flex;
}

.brand-lockup-line {
  font-family: var(--font);
  color: #fff;
  letter-spacing: .01em;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
}

.brand-mid {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  position: relative;
}

.brand-hero {
  width: 240px;
  position: relative;
}

.brand-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-annotations {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-arrows {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.hero-arrows .gait-arc {
  fill: none;
  stroke: #5fe0d28c;
  stroke-width: .9px;
  stroke-linecap: round;
  stroke-dasharray: 0 2.6;
}

.gait-dot {
  background: #5fe0d2;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  position: absolute;
  box-shadow: 0 0 6px #5fe0d2b3;
}

.gait-dot:before {
  content: "";
  animation: 2.4s ease-out infinite gait-pulse;
  animation-delay: var(--d, 0s);
  border: 1px solid #5fe0d2;
  border-radius: 50%;
  position: absolute;
  inset: -2px;
}

@keyframes gait-pulse {
  0% {
    opacity: .75;
    transform: scale(.5);
  }

  70% {
    opacity: .15;
  }

  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}

.hero-label {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #ffffffd9;
  white-space: nowrap;
  flex-direction: column;
  font-size: 8.5px;
  font-weight: 600;
  line-height: 1.18;
  display: flex;
  position: absolute;
}

.hero-label.lead {
  text-align: left;
}

.hero-label.trail {
  text-align: right;
}

.hero-label.step {
  text-align: center;
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .gait-dot:before {
    opacity: .4;
    animation: none;
  }
}

.brand-headline {
  font-family: var(--font);
  color: #fff;
  letter-spacing: -.018em;
  text-align: center;
  max-width: 300px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
}

.brand-headline em {
  color: #35b5a8f2;
  font-style: normal;
}

.platforms {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  display: flex;
}

.platforms-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff6;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}

.platform-row {
  gap: 8px;
  display: flex;
}

.platform {
  border-radius: var(--radius-sm);
  background: #ffffff0a;
  border: 1px solid #ffffff1f;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  transition: border-color .15s, background .15s;
  display: flex;
}

.platform svg {
  stroke: #ffffff8c;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 20px;
  height: 20px;
}

.platform span {
  color: #ffffff8c;
  letter-spacing: .01em;
  font-size: 11px;
  font-weight: 500;
}

.platform.current {
  background: #35b5a81f;
  border-color: #35b5a88c;
}

.platform.current svg {
  stroke: #5fe0d2;
}

.platform.current span {
  color: #fff;
  font-weight: 600;
}

.platform-tag {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #5fe0d2;
  font-size: 8.5px;
  font-weight: 700;
}

.brand-foot {
  z-index: 1;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  display: flex;
  position: relative;
}

.brand-badges {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.brand-legal {
  text-align: center;
}

.brand-badge {
  letter-spacing: .04em;
  color: #ffffff73;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--mono);
  border: 1px solid #ffffff24;
  border-radius: 4px;
  padding: 3px 8px;
}

.brand-legal {
  color: #ffffff42;
  font-size: 11px;
  line-height: 1.5;
}

.form-panel {
  background: var(--bg);
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 40px 32px;
  display: flex;
  overflow-y: auto;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
}

.form-card.wide {
  max-width: 420px;
}

.form-head {
  margin-bottom: 32px;
}

.context-chip {
  color: var(--ok);
  background: var(--ok-50);
  border: 1px solid var(--ok-100);
  letter-spacing: .01em;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
}

.form-title {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -.022em;
  margin-bottom: 7px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.form-sub {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-sub strong {
  color: var(--text-2);
  font-weight: 600;
}

.field-group {
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  display: flex;
}

.field-group.tight {
  margin-bottom: 28px;
}

.lbl {
  color: var(--text-2);
  letter-spacing: .005em;
  font-size: 12.5px;
  font-weight: 600;
}

.lbl-row {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.field {
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--text);
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color .15s, box-shadow .15s;
}

.field:focus {
  border-color: var(--tl);
  outline: none;
  box-shadow: 0 0 0 3px #35b5a824;
}

.field::placeholder {
  color: var(--muted-2);
}

.field.err {
  border-color: var(--danger);
  background: var(--danger-50);
}

.field.err:focus {
  box-shadow: 0 0 0 3px #922b211a;
}

.field.match {
  border-color: var(--tl);
}

.field-pw {
  position: relative;
}

.field-pw .field {
  padding-right: 46px;
}

.eye-btn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--muted);
  border-radius: var(--radius-xs);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: color .15s;
  display: flex;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
}

.eye-btn:hover {
  color: var(--text-2);
}

.field-error {
  color: var(--danger);
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
}

.forgot-link {
  color: var(--tl);
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

.forgot-link:hover {
  color: #2a9d92;
}

.error-msg {
  background: var(--danger-50);
  border: 1px solid var(--danger-100);
  border-radius: var(--radius-xs);
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 14px;
  display: flex;
}

.error-msg svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.error-msg-text {
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}

.submit-btn {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xs);
  cursor: pointer;
  width: 100%;
  height: 48px;
  transition: background .15s var(--ease),
    transform .1s;
  letter-spacing: .008em;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--font);
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  text-decoration: none;
  display: flex;
}

.submit-btn:hover {
  background: var(--primary-600);
}

.submit-btn:active {
  transform: scale(.99);
}

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

.submit-btn:disabled {
  background: var(--muted-2);
  cursor: not-allowed;
  transform: none;
}

.form-note {
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

.form-note a {
  color: var(--tl);
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}

.form-note a:hover {
  color: #2a9d92;
}

.back-link {
  color: var(--muted);
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
  display: inline-flex;
}

.back-link:hover {
  color: var(--text-2);
}

.back-link svg {
  transition: transform .15s var(--ease);
  flex-shrink: 0;
}

.back-link:hover svg {
  transform: translateX(-2px);
}

.success-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.success-icon-wrap {
  background: var(--ok-50);
  border: 2px solid var(--ok-100);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
}

.success-title {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -.022em;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.success-body {
  color: var(--muted);
  max-width: 300px;
  margin-bottom: 0;
  font-size: 13.5px;
  line-height: 1.65;
}

.success-email {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--mono);
  word-break: break-all;
  margin: 16px 0;
}

.success-note {
  color: var(--muted-2);
  max-width: 280px;
  font-size: 12px;
  line-height: 1.55;
}

.strength-wrap {
  flex-direction: column;
  gap: 5px;
  margin-top: 9px;
  display: flex;
}

.strength-segs {
  gap: 4px;
  display: flex;
}

.strength-seg {
  background: var(--border);
  height: 3px;
  transition: background .25s var(--ease);
  border-radius: 999px;
  flex: 1;
}

.strength-label {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  transition: color .25s;
}

.str-1 .strength-seg:first-child {
  background: var(--danger);
}

.str-1.strength-label, .str-1 .strength-label {
  color: var(--danger);
}

.str-2 .strength-seg:first-child, .str-2 .strength-seg:nth-child(2) {
  background: #e07b00;
}

.str-3 .strength-seg:first-child, .str-3 .strength-seg:nth-child(2), .str-3 .strength-seg:nth-child(3) {
  background: var(--warn);
}

.str-4 .strength-seg {
  background: var(--ok);
}

.strength-label.lvl-1 {
  color: var(--danger);
}

.strength-label.lvl-2 {
  color: #e07b00;
}

.strength-label.lvl-3 {
  color: var(--warn);
}

.strength-label.lvl-4 {
  color: var(--ok);
}

.reqs {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  padding: 12px 14px;
  display: flex;
}

.req {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: color .2s;
  display: flex;
}

.req.ok {
  color: var(--ok);
}

.req-dot {
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  transition: background .2s;
}

.req.ok .req-dot {
  background: var(--ok);
}

.match-hint {
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.match-hint.ok {
  color: var(--ok);
}

.match-hint.err {
  color: var(--danger);
}

.done-view {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.done-icon-ring {
  background: var(--ok-50);
  border: 2px solid var(--ok-100);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  display: flex;
}

.done-title {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -.022em;
  margin-bottom: 10px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}

.done-body {
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 28px;
  font-size: 13.5px;
  line-height: 1.65;
}

.done-divider {
  background: var(--border);
  width: 100%;
  height: 1px;
  margin: 24px 0;
}

.done-note {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .brand-panel {
    display: none;
  }
}

/*# sourceMappingURL=app_%28auth%29_auth_0_xc21i.css.map*/