/* Giriş — premium (landing ile uyumlu) */
body.mode-marketing.page-login {
  --mkt-gutter: clamp(20px, 2.5vw, 40px);
  --mkt-max: none;
  --mkt-col-gap: clamp(32px, 4vw, 80px);
  --mkt-header-h: 0px;
  min-height: 100vh;
  overflow-x: clip;
  background: #f4f6fa;
}

.page-login {
  --mkt-radius-sm: 5px;
  --mkt-radius-md: 6px;
  --mkt-radius-lg: 8px;
  --auth-radius: 6px;
  --auth-radius-lg: 8px;
  --auth-accent: #f97316;
  --auth-accent-hover: #ea580c;
  --auth-accent-soft: #fff7ed;
  --auth-accent-glow: rgba(249, 115, 22, 0.12);
  --auth-ink: #0c1222;
  --auth-muted: #5b6478;
  --auth-line: #e8ecf2;
  --auth-bg: #f6f8fb;
  --accent: var(--auth-accent);
  --accent-hover: var(--auth-accent-hover);
  --accent-soft: var(--auth-accent-soft);
  --accent-glow: var(--auth-accent-glow);
  --mkt-ink: var(--auth-ink);
  --mkt-muted: var(--auth-muted);
  --mkt-line: var(--auth-line);
  --mkt-bg: var(--auth-bg);
}

/* ── Giriş düzeni (pazaryeri ile uyumlu) ── */
.page-login .auth-page.auth-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 0 var(--mkt-gutter) clamp(32px, 5vw, 48px);
  background: transparent;
  overflow-x: clip;
}

.page-login .auth-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px 0 28px;
}

.page-login .auth-bar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--auth-ink);
}

.page-login .auth-bar__brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--auth-radius);
}

.page-login .auth-bar__brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.page-login .auth-bar__brand-text strong {
  font-weight: 800;
}

.page-login .auth-bar__home {
  gap: 6px;
  border-radius: var(--auth-radius);
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(12, 18, 34, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
}

.page-login .auth-bar__home .ui-icon {
  width: 16px;
  height: 16px;
}

.page-login .auth-bar__home:hover {
  color: var(--auth-accent-hover);
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 4px 12px rgba(12, 18, 34, 0.08);
}

.page-login .auth-layout__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 1;
  align-items: stretch;
  min-height: min(680px, calc(100vh - 140px));
  background: #fff;
  border: 1px solid var(--auth-line);
  border-radius: var(--auth-radius-lg);
  box-shadow: 0 1px 3px rgba(12, 18, 34, 0.06);
  overflow: hidden;
}

.page-login .auth-layout__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(36px, 5vw, 56px) clamp(36px, 5vw, 64px);
  background: #f8fafc;
  border-right: 1px solid var(--auth-line);
  overflow: hidden;
}

.page-login .auth-info__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-login .auth-info__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  will-change: transform;
}

.page-login .auth-info__blob--1 {
  width: 280px;
  height: 280px;
  top: -80px;
  left: -60px;
  background: rgba(249, 115, 22, 0.12);
  animation: auth-blob-drift-1 18s ease-in-out infinite;
}

.page-login .auth-info__blob--2 {
  width: 220px;
  height: 220px;
  bottom: -40px;
  right: -30px;
  background: rgba(99, 102, 241, 0.08);
  animation: auth-blob-drift-2 22s ease-in-out infinite;
}

.page-login .auth-info__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 18, 34, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 18, 34, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, #000 20%, transparent 75%);
  animation: auth-grid-shift 24s linear infinite;
}

.page-login .auth-info__content {
  position: relative;
  z-index: 1;
}

.page-login .auth-layout__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--auth-muted);
}

.page-login .auth-layout__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--auth-ink);
}

.page-login .auth-layout__lead {
  margin: 0 0 28px;
  max-width: 42ch;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--auth-muted);
}

/* Sol panel içeriği */
.page-login .auth-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-login .auth-info__live {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--auth-radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--auth-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-login .auth-info__live-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: auth-live-blink 2s ease-in-out infinite;
}

.page-login .auth-info__live-track {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.35em;
  overflow: hidden;
}

.page-login .auth-info__live-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--auth-muted);
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-login .auth-info__live-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.page-login .auth-info__live-tag {
  flex-shrink: 0;
  padding: 2px 7px;
  border-radius: 5px;
  background: #f1f5f9;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--auth-ink);
}

.page-login .auth-info__chart {
  padding: 14px 14px 12px;
  border-radius: var(--auth-radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--auth-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-login .auth-info__chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.page-login .auth-info__chart-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--auth-muted);
}

.page-login .auth-info__chart-total {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--auth-ink);
}

.page-login .auth-info__chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
}

.page-login .auth-info__chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  height: 100%;
  justify-content: flex-end;
}

.page-login .auth-info__chart-bar {
  width: 100%;
  max-width: 28px;
  height: 0;
  border-radius: 4px 4px 0 0;
  background: #cbd5e1;
  transition: height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-login .auth-info__chart-bar.is-ready {
  height: var(--bar-h, 20%);
}

.page-login .auth-info__chart-bar--muted {
  background: #e2e8f0;
}

.page-login .auth-info__chart-bar--today {
  background: var(--auth-accent);
}

.page-login .auth-info__chart-day {
  font-size: 0.625rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1;
}

.page-login .auth-info__chart-meta {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: var(--auth-muted);
}

.page-login .auth-info__chart-meta strong {
  font-weight: 600;
  color: var(--auth-ink);
}

.page-login .auth-info__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--auth-line);
  border-radius: var(--auth-radius);
  background: var(--auth-line);
  overflow: hidden;
}

.page-login .auth-info__stat {
  margin: 0;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.85);
  text-align: center;
  transition: background 0.3s ease;
}

.page-login .auth-info__stat:hover {
  background: #fff;
}

.page-login .auth-info__stat-val {
  margin: 0 0 2px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--auth-ink);
  line-height: 1.2;
}

.page-login .auth-info__stat-lbl {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--auth-muted);
  line-height: 1.3;
}

.page-login .auth-info__meta {
  margin: -8px 0 0;
  font-size: 0.8125rem;
  color: var(--auth-muted);
  line-height: 1.5;
}

.page-login .auth-info__meta strong {
  font-weight: 600;
  color: var(--auth-ink);
}

.page-login .auth-info__section {
  padding-top: 4px;
}

.page-login .auth-info__heading {
  margin: 0 0 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-ink);
}

.page-login .auth-info__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-login .auth-info__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: var(--mkt-radius-sm);
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0.55;
}

.page-login .auth-info__steps li.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.7);
}

.page-login .auth-info__step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--auth-line);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--auth-muted);
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-login .auth-info__steps li.is-active .auth-info__step-num {
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--auth-accent-hover);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.page-login .auth-info__step-text {
  padding-top: 2px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--auth-muted);
}

.page-login .auth-info__step-text strong {
  color: var(--auth-ink);
  font-weight: 600;
}

.page-login .auth-info__feats {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--auth-line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.page-login .auth-info__feats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--auth-muted);
  line-height: 1.35;
}

.page-login .auth-info__feats .ui-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

@keyframes auth-blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, 20px) scale(1.05); }
  66% { transform: translate(15px, 40px) scale(0.95); }
}

@keyframes auth-blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, -30px) scale(1.08); }
}

@keyframes auth-grid-shift {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}

@keyframes auth-live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.page-login .auth-layout__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px) clamp(36px, 6vw, 72px);
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-login .auth-form-stack {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-login .auth-form-stack .auth-mode-tabs--segmented,
.page-login .auth-form-stack .auth-panel,
.page-login .auth-form-stack .auth-panel-head,
.page-login .auth-form-stack .form-grid--auth-login,
.page-login .auth-form-stack .auth-trust,
.page-login .auth-form-stack .auth-login-alert {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.page-login .auth-form-stack .auth-mode-tabs--segmented {
  display: flex;
  padding: 4px;
  margin-bottom: 24px;
}

.page-login .auth-form-stack .auth-mode-tabs--segmented .auth-mode-tab {
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
}

.page-login .auth-form-stack .form-field-auth,
.page-login .auth-form-stack .form-field-auth__wrap,
.page-login .auth-form-stack .form-actions--auth,
.page-login .auth-form-stack .btn-block {
  width: 100%;
  box-sizing: border-box;
}

.page-login .auth-page:not(.auth-layout) {
  position: relative;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) var(--mkt-gutter);
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 12% 20%, rgba(249, 115, 22, 0.04), transparent 58%),
    radial-gradient(ellipse 80% 60% at 70% 0%, var(--auth-accent-glow), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--auth-bg) 100%);
}

.page-login-landing .auth-page {
  min-height: auto;
  display: block;
  align-items: unset;
  justify-content: unset;
  padding: 0;
  background: transparent;
  border-bottom: none;
}

.page-login-landing #auth.mkt-hero {
  padding: calc(var(--mkt-header-h) + 48px) var(--mkt-gutter) clamp(52px, 6vw, 72px);
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(249, 115, 22, 0.07), transparent 58%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  border-top: 1px solid var(--auth-line);
  border-bottom: 1px solid var(--auth-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 48px -20px rgba(12, 18, 34, 0.1);
}

.page-login-landing #auth.mkt-hero::before {
  display: none;
}

.page-login-landing #auth.mkt-hero .mkt-hero__glow {
  opacity: 0.45;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  right: -40px;
  top: 20%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
}

.page-login-landing #auth.mkt-hero::after {
  content: "";
  position: absolute;
  left: var(--mkt-gutter);
  right: var(--mkt-gutter);
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(249, 115, 22, 0.45) 22%,
    rgba(249, 115, 22, 0.65) 50%,
    rgba(249, 115, 22, 0.45) 78%,
    transparent 100%
  );
  pointer-events: none;
}

.page-login-landing .mkt-main--below-auth {
  padding-top: 0;
  border-top: 4px solid var(--mkt-bg);
}

.page-login-landing .mkt-main--below-auth .mkt-hero {
  padding-top: clamp(56px, 7vw, 80px);
}

.page-login-landing .auth-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
  pointer-events: none;
}

.page-login-landing #auth,
.page-login-landing #kayit {
  scroll-margin-top: 24px;
}

.page-login .auth-shell {
  width: 100%;
  max-width: var(--mkt-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--mkt-col-gap);
  align-items: center;
}

.page-login .auth-shell--login-only {
  max-width: 480px;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
}

.page-login .auth-shell--login-only .auth-card {
  max-width: none;
  width: 100%;
}

.page-login .auth-form-col {
  min-width: 0;
  width: 100%;
  justify-self: end;
}


.page-login .auth-form-col .auth-login-card {
  width: 100%;
  max-width: min(480px, 100%);
  margin-left: auto;
}

.page-login .auth-showcase__brand {
  margin-bottom: 22px;
}

.page-login .auth-showcase__title {
  margin-bottom: 20px;
}

.page-login .auth-showcase .mkt-hero__lead {
  margin-bottom: 28px;
}

.page-login .auth-showcase .mkt-hero__stats {
  margin-bottom: 28px;
}

.page-login .auth-aside__list {
  margin-bottom: 24px;
}

.page-login .auth-showcase__pills {
  margin-bottom: 28px;
}

.page-login .auth-showcase__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.page-login .auth-showcase__market {
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--auth-radius);
  text-decoration: none;
}

.page-login .auth-showcase__brand-strong {
  color: var(--auth-accent);
}

.page-login .auth-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-login .auth-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-login .auth-aside__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--auth-radius);
  background: var(--auth-accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: var(--auth-accent);
}

.page-login .auth-aside__icon .ui-icon {
  width: 18px;
  height: 18px;
}

.page-login .auth-aside__text {
  padding-top: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--auth-muted);
}

.page-login .auth-aside__text strong {
  color: var(--auth-ink);
  font-weight: 600;
}

.page-login .auth-home-link--mobile {
  display: none;
  margin-top: 20px;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.page-login .auth-anchor {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
  pointer-events: none;
}

.page-login #auth,
.page-login #kayit {
  scroll-margin-top: 24px;
}

.page-login-landing .auth-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(22px, 2.8vw, 34px);
  border-radius: var(--mkt-radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--auth-line);
  box-shadow:
    0 1px 2px rgba(12, 18, 34, 0.03),
    0 12px 36px -14px rgba(12, 18, 34, 0.1);
}

.page-login-landing .auth-aside__title {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  margin-bottom: 24px;
}

.page-login-landing .mkt-preview--auth {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 0;
}

@media (min-width: 961px) {
  .page-login-landing .mkt-hero__visual .mkt-preview--auth,
  .page-login-landing .mkt-hero__visual .mkt-preview--auth:hover {
    transform: none;
  }
}

.page-login-landing .mkt-preview--auth .auth-login-card {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.page-login-landing .auth-aside__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-login-landing .auth-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-login-landing .auth-aside__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--auth-radius);
  background: var(--auth-accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.18);
  color: var(--auth-accent);
}

.page-login-landing .auth-aside__icon .ui-icon {
  width: 18px;
  height: 18px;
}

.page-login-landing .auth-aside__text {
  padding-top: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--auth-muted);
}

.page-login-landing .auth-aside__text strong {
  color: var(--auth-ink);
  font-weight: 600;
}

.page-login-landing .auth-aside__market {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  padding-top: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-muted);
  text-decoration: none;
  width: fit-content;
  transition: color 0.15s ease;
}

.page-login-landing .auth-aside__market:hover {
  color: var(--auth-accent-hover);
}

.page-login-landing .auth-home-link--mobile {
  display: none;
  margin-top: 20px;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.page-login .auth-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-muted);
  text-decoration: none;
  justify-self: center;
  transition: color 0.15s;
}

.page-login .auth-home-link:hover {
  color: var(--auth-accent-hover);
}

.page-login .auth-panel-head--compact {
  margin-bottom: 20px;
}

.page-login .auth-panel-head--compact .auth-panel-title {
  margin: 0;
  font-size: 1.35rem;
}

.page-login .auth-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.page-login .auth-showcase__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--auth-ink);
  width: fit-content;
}

.page-login .auth-showcase__brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--auth-radius);
  flex-shrink: 0;
}

.page-login .auth-showcase__brand-text {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.page-login .auth-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 14px 6px 8px;
  border-radius: var(--auth-radius);
  background: #fff;
  border: 1px solid var(--auth-line);
  box-shadow: 0 2px 12px rgba(12, 18, 34, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--auth-muted);
}

.page-login .auth-showcase__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--auth-accent);
  box-shadow: 0 0 0 3px var(--auth-accent-glow);
  animation: auth-pulse 1.6s ease-in-out infinite;
}

.page-login .auth-showcase__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--auth-ink);
}

.page-login .auth-showcase__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--auth-muted);
  max-width: 28em;
}

.page-login .auth-showcase__visual {
  margin-top: 4px;
}

.page-login .auth-showcase__visual .mkt-preview--product {
  max-width: none;
  margin: 0;
  width: 100%;
}

.page-login .auth-showcase__visual .mkt-preview__frame {
  box-shadow:
    0 2px 4px rgba(12, 18, 34, 0.04),
    0 28px 72px -20px rgba(12, 18, 34, 0.16);
}

.page-login .auth-showcase__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-muted);
  text-decoration: none;
  width: fit-content;
  transition: color 0.15s;
}

.page-login .auth-showcase__back:hover {
  color: var(--auth-accent-hover);
}

.page-login .auth-card {
  max-width: none;
  width: 100%;
}

.page-login .auth-mobile-hero {
  display: none;
  text-align: center;
  margin-bottom: 20px;
}

.page-login .auth-mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--auth-ink);
}

.page-login .auth-mobile-brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--auth-radius);
}

.page-login .auth-mobile-brand span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.page-login .auth-mobile-tagline {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: var(--auth-muted);
}

.page-login .auth-login-card.card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--mkt-radius-lg);
  border: 1px solid var(--auth-line);
  background: var(--mkt-surface, rgba(255, 255, 255, 0.94));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 2px 4px rgba(12, 18, 34, 0.03),
    0 28px 72px -20px rgba(12, 18, 34, 0.15);
}

.page-login .auth-login-card.card:hover {
  box-shadow:
    0 2px 4px rgba(12, 18, 34, 0.03),
    0 28px 72px -20px rgba(12, 18, 34, 0.15);
  border-color: var(--auth-line);
}

.page-login .auth-layout__form.auth-login-card {
  padding: clamp(32px, 5vw, 48px);
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.page-login .auth-layout__form.auth-login-card:hover {
  border: none;
  box-shadow: none;
}

.page-login .auth-login-card--enter {
  animation: none;
}

.page-login-landing .auth-login-card.card {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 28px;
  box-sizing: border-box;
  border-radius: var(--mkt-radius-lg);
  border: 1px solid var(--mkt-line);
  background: #fff;
  box-shadow:
    0 2px 4px rgba(12, 18, 34, 0.03),
    var(--mkt-shadow-md);
}

.page-login-landing .auth-login-card .auth-mode-tabs--segmented,
.page-login-landing .auth-login-card .auth-panel,
.page-login-landing .auth-login-card .form-grid--auth-login,
.page-login-landing .auth-login-card .form-field-auth,
.page-login-landing .auth-login-card .form-field-auth__wrap,
.page-login-landing .auth-login-card .form-actions--auth {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page-login-landing .auth-login-card .btn-block {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}

@media (min-width: 961px) {
  .page-login-landing .auth-home-link--mobile {
    display: none !important;
  }

  .page-login-landing .auth-panel-head {
    text-align: left;
  }

  .page-login-landing .auth-trust {
    justify-content: flex-start;
  }
}

.page-login .auth-mode-tabs--segmented {
  background: #f1f5f9;
  border: none;
  border-radius: var(--auth-radius);
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

.page-login .auth-mode-tabs--segmented .auth-mode-tab {
  min-height: 42px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--auth-muted);
  border-radius: var(--mkt-radius-sm);
  border: none;
  transition: color 0.15s, background 0.15s, box-shadow 0.15s;
}

.page-login .auth-mode-tabs--segmented .auth-mode-tab:hover:not(.is-active) {
  color: var(--auth-ink);
  background: rgba(255, 255, 255, 0.55);
}

.page-login .auth-mode-tabs--segmented .auth-mode-tab.is-active {
  background: #fff;
  color: var(--auth-ink);
  box-shadow: 0 1px 3px rgba(12, 18, 34, 0.08);
}

.page-login .auth-panel-head {
  margin-bottom: 22px;
}

.page-login .auth-layout .auth-panel-title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--auth-ink);
}

.page-login .auth-layout .auth-panel-lead {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--auth-muted);
}

.page-login .auth-panel-eyebrow {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--auth-accent);
  letter-spacing: 0.12em;
}

.page-login .form-grid--auth-login {
  gap: 14px;
}

.page-login .form-field-auth label {
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.page-login .auth-login-card .auth-panel-title {
  font-size: 1.4rem;
  color: var(--auth-ink);
}

.page-login .auth-panel-lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--auth-muted);
}

.page-login .form-field-auth__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.page-login .form-field-auth--icon .form-field-auth__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: var(--auth-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.page-login .form-field-auth--icon .form-field-auth__icon .ui-icon {
  width: 18px;
  height: 18px;
}

.page-login .auth-layout .form-field-auth input {
  min-height: 46px;
  border-radius: var(--auth-radius);
  border-color: #e2e8f0;
  background: #f8fafc;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.page-login .auth-layout .form-field-auth input:hover {
  border-color: #cbd5e1;
}

.page-login .auth-layout .form-field-auth input:focus {
  background: #fff;
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.page-login .auth-layout .auth-login-card .btn-primary {
  min-height: 46px;
  border-radius: var(--auth-radius);
  font-size: 0.9375rem;
  font-weight: 700;
}

.page-login .auth-layout .auth-mode-tabs--segmented {
  margin-bottom: 24px;
}

.page-login .auth-layout .auth-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  justify-content: flex-start;
  gap: 12px 16px;
}

.page-login .form-field-auth input {
  min-height: 48px;
  padding: 12px 16px 12px 44px;
  border-radius: var(--auth-radius);
  border: 1px solid var(--auth-line);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.9375rem;
  color: var(--auth-ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.page-login .form-field-auth input:-webkit-autofill,
.page-login .form-field-auth input:-webkit-autofill:hover,
.page-login .form-field-auth input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: var(--auth-ink);
  caret-color: var(--auth-ink);
  transition: background-color 5000s ease-in-out 0s;
}

.page-login .form-field-auth--password input {
  padding-right: 48px;
}

.page-login .form-field-auth input:hover {
  border-color: #d1d8e4;
}

.page-login .form-field-auth input:focus {
  border-color: var(--auth-accent);
  box-shadow: 0 0 0 3px var(--auth-accent-glow);
}

.page-login .form-field-auth__toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: var(--mkt-radius-sm);
  background: transparent;
  color: var(--auth-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: color 0.15s, background 0.15s;
}

.page-login .form-actions--auth {
  margin-top: 0;
  padding-top: 0;
}

.page-login .form-field-auth__toggle .ui-icon {
  width: 18px;
  height: 18px;
}

.page-login .form-field-auth__toggle:hover,
.page-login .form-field-auth__toggle.is-active {
  color: var(--auth-accent);
  background: var(--auth-accent-soft);
}

.page-login .auth-login-card .btn-primary {
  min-height: 48px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: var(--auth-radius);
  background: var(--auth-accent);
  border-color: var(--auth-accent);
  font-weight: 600;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.page-login .auth-login-card .btn-primary:hover:not(:disabled) {
  background: var(--auth-accent-hover);
  border-color: var(--auth-accent-hover);
}

.page-login .auth-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--auth-line);
}

.page-login .auth-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--auth-muted);
}

.page-login .auth-trust__item .ui-icon {
  width: 14px;
  height: 14px;
  color: var(--auth-accent);
}

.page-login .auth-mobile-feats {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 20px;
}

.page-login .auth-mobile-feats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--auth-muted);
}

.page-login .auth-mobile-feats .ui-icon {
  width: 14px;
  height: 14px;
  color: var(--auth-accent);
}

.page-login .auth-login-alert {
  margin-bottom: 14px;
}

@keyframes auth-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes auth-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(0.92);
  }
}

@media (max-width: 720px) {
  body.mode-marketing.page-login {
    --mkt-gutter: 16px;
  }
}

@media (max-width: 960px) {
  .page-login .auth-layout__shell {
    grid-template-columns: 1fr;
  }

  .page-login .auth-layout__info {
    border-right: none;
    border-bottom: 1px solid var(--auth-line);
    padding: 28px 24px;
  }

  .page-login .auth-info__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-login .auth-info__feats {
    grid-template-columns: 1fr;
  }

  .page-login .auth-layout__shell {
    min-height: auto;
  }

  .page-login .auth-layout__form {
    padding: 28px 24px 32px;
    align-items: stretch;
  }

  .page-login .auth-form-stack {
    max-width: none;
  }

  .page-login .auth-page:not(.auth-layout) {
    padding: clamp(28px, 5vw, 40px) var(--mkt-gutter);
  }

  .page-login .auth-form-col .auth-login-card {
    max-width: none;
    margin-left: 0;
  }

  .page-login .auth-page__inner,
  .page-login .auth-shell {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 24px;
    margin-inline: auto;
    justify-items: stretch;
  }

  .page-login .auth-form-col {
    justify-self: stretch;
  }

  .page-login .auth-home-link--mobile {
    display: inline-flex;
  }

  .page-login-landing .auth-aside {
    display: none;
  }

  .page-login-landing .mkt-hero__visual .mkt-preview--auth {
    max-width: 520px;
    margin-inline: auto;
  }

  .page-login-landing .auth-home-link--mobile {
    display: inline-flex;
  }

  .page-login-landing .auth-panel-head {
    text-align: center;
  }

  .page-login-landing .auth-trust {
    justify-content: center;
  }

  .page-login .auth-showcase {
    display: none;
  }

  .page-login .auth-mobile-hero {
    display: block;
  }

  .page-login .auth-mobile-feats {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-login .auth-showcase__eyebrow-dot,
  .page-login .auth-login-card--enter,
  .page-login .auth-info__blob,
  .page-login .auth-info__grid,
  .page-login .auth-info__live-dot {
    animation: none;
  }

  .page-login .auth-info__live-item {
    transition: none;
  }

  .page-login .auth-info__chart-bar {
    transition: none;
    height: var(--bar-h, 20%);
  }

  .page-login .auth-info__steps li {
    opacity: 1;
    transition: none;
  }

  .page-login .auth-login-card .btn-primary:hover:not(:disabled) {
    transform: none;
  }
}

/* Mağaza / müşteri giriş ayrımı */
.auth-switch-role {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--auth-line, #e8ecf2);
  font-size: 0.88rem;
  text-align: center;
}

.auth-switch-role a {
  font-weight: 600;
  color: var(--auth-accent, #f97316);
  text-decoration: none;
}

.auth-switch-role a:hover {
  text-decoration: underline;
}

.auth-musteri-perks {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.auth-musteri-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--auth-muted, #5b6478);
}

.page-musteri-login .auth-info__blob--1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
}

.page-magaza-login .auth-panel-title {
  letter-spacing: -0.02em;
}
