/* ========================================
   AUTH PAGE - Split Layout (Sol Branding + Sağ Form)
   ======================================== */

/* Split body */
.auth-split-body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  background: #fff;
}

/* Split Container */
.auth-split {
  display: flex;
  min-height: 100vh;
}

.auth-split.auth-inline {
  min-height: auto;
  margin: 30px auto;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border: 1px solid #e0e2f0;
}

/* ── Sol Panel: Branding ── */
.auth-left {
  flex: 1;
  background: linear-gradient(160deg, #0f0f1e 0%, #1a1040 40%, #1a1a35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.auth-left-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.auth-left-bg::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.auth-left-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--s-r,255),var(--s-g,101),var(--s-b,132),.1) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
}

.auth-left-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  max-width: 480px;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 40px;
  transition: color .2s;
  text-decoration: none;
}

.auth-back:hover {
  color: #fff;
}

.auth-brand {
  margin-bottom: 40px;
}

.auth-brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--p,#6c63ff), var(--s,#ff6584));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.3);
}

.auth-brand h1 {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}

.auth-brand p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0;
}

/* Features List - base (overridden below with scroll support) */

.auth-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .2s;
}
.auth-feature:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

.af-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #7c6fff;
  flex-shrink: 0;
}

.auth-feature:nth-child(2) .af-icon { background: rgba(56,239,125,.12); color: #38ef7d; }
.auth-feature:nth-child(3) .af-icon { background: rgba(56,189,248,.12); color: #38bdf8; }
.auth-feature:nth-child(4) .af-icon { background: rgba(var(--s-r,255),var(--s-g,101),var(--s-b,132),.12); color: var(--s,#ff6584); }

.auth-feature h4 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1px;
  line-height: 1.2;
}

.auth-feature p {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.auth-left-footer {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.auth-left-footer p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

/* ── Sağ Panel: Form ── */
.auth-right {
  width: 520px;
  min-width: 520px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 48px;
  overflow-y: auto;
}

.auth-right-content {
  width: 100%;
  max-width: 420px;
}

/* Tabs */
.auth-tabs-wrap {
  display: flex;
  background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.06);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
}

.auth-tabs-wrap .auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  background: transparent;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-tabs-wrap .auth-tab:hover {
  color: var(--pd,#4338ca);
}

.auth-tabs-wrap .auth-tab.active {
  background: #fff;
  color: var(--p,#6c63ff);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.auth-tabs-wrap .auth-tab i {
  font-size: 14px;
}

/* Panes */
.auth-pane {
  display: none;
  animation: authFadeIn .3s ease;
}

.auth-pane.active {
  display: block;
}

@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Account Type Selector */
.account-type-selector {
  display: flex;
  gap: 12px;
}

.at-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 2px solid #e0e2f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

.at-option input {
  display: none;
}

.at-option i {
  font-size: 18px;
}

.at-option:hover {
  border-color: var(--p,#6c63ff);
}

.at-option.active {
  border-color: var(--p,#6c63ff);
  background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.05);
  color: var(--p,#6c63ff);
}

/* Reuse site.css form components */
.form-group { margin-bottom: 18px; }
.form-label { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 600; color: #1e1e3a; margin-bottom: 6px; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-ic { position: absolute; left: 14px; color: #64748b; font-size: 15px; pointer-events: none; z-index: 1; }
.input-wrap .form-input { padding-left: 42px; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid #e0e2f0; border-radius: 10px; font-size: 14px; color: #1e1e3a; background: #fff; transition: all .2s; font-family: inherit; outline: none; }
.form-input:focus { border-color: var(--p,#6c63ff); box-shadow: 0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.1); }
.input-toggle { position: absolute; right: 12px; color: #64748b; cursor: pointer; font-size: 15px; padding: 4px; border: none; background: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Social Buttons */
.social-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1.5px solid #e0e2f0; background: #fff; transition: all .2s; color: #1e1e3a; font-family: inherit; }
.social-btn:hover { border-color: var(--p,#6c63ff); background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.05); }
.google-btn:hover { border-color: #4285F4; color: #4285F4; background: #eff6ff; }
.fb-btn { background: #1877f2; color: #fff; border-color: #1877f2; }
.fb-btn:hover { background: #166fe5; }

/* Divider */
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; color: #9ca3af; font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #e0e2f0; }

/* Submit Button */
.btn-auth { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--p,#6c63ff), var(--pd,#5a52e0)); color: #fff; border: none; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; font-family: inherit; }
.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.35); }
.btn-auth:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }

/* Auth Messages */
.auth-msg { font-size: 13px; padding: 12px 16px; border-radius: 10px; margin-top: 8px; }
.auth-msg.error { background: rgba(239,68,68,.1); color: #dc2626; border: 1px solid rgba(239,68,68,.2); }
.auth-msg.success { background: rgba(16,185,129,.1); color: #059669; border: 1px solid rgba(16,185,129,.2); }

/* OTP */
.otp-box { background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.05); border-radius: 12px; padding: 24px; text-align: center; margin-bottom: 16px; }
.otp-box i { font-size: 32px; color: var(--p,#6c63ff); margin-bottom: 10px; display: block; }
.otp-box p { font-size: 13px; color: #64748b; margin-bottom: 16px; }
.otp-inputs { display: flex; justify-content: center; gap: 10px; margin-bottom: 16px; }
.otp-digit { width: 46px; height: 54px; border: 1.5px solid #e0e2f0; border-radius: 10px; font-size: 20px; font-weight: 700; text-align: center; color: var(--p,#6c63ff); background: #fff; transition: all .2s; outline: none; }
.otp-digit:focus { border-color: var(--p,#6c63ff); box-shadow: 0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.12); }
.btn-otp { padding: 10px 20px; background: var(--p,#6c63ff); color: #fff; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; font-family: inherit; }
.btn-otp:hover { background: var(--pd,#5a52e0); }

/* Checkbox Label */
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #64748b; margin-bottom: 20px; cursor: pointer; line-height: 1.6; }
.checkbox-label input { margin-top: 3px; accent-color: var(--p,#6c63ff); flex-shrink: 0; }
.checkbox-label a { color: var(--p,#6c63ff); font-weight: 600; text-decoration: none; }
.checkbox-label a:hover { text-decoration: underline; }

/* Password Strength */
.pass-strength { margin-top: 6px; min-height: 0; height: auto !important; display: block; width: 100%; overflow: visible !important; }
.ps-bar { height: 4px; border-radius: 2px; transition: all .3s ease; }

/* CAPTCHA */
.captcha-wrap { margin: 16px 0; }
.captcha-box { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.05); border: 1.5px solid #e0e2f0; border-radius: 12px; position: relative; }
.captcha-question { font-size: 16px; font-weight: 800; color: #1e1e3a; flex: 1; letter-spacing: 1px; }
.captcha-input { width: 80px; padding: 10px 12px; border: 1.5px solid #e0e2f0; border-radius: 10px; font-size: 18px; font-weight: 700; text-align: center; color: var(--p,#6c63ff); background: #fff; outline: none; font-family: inherit; }
.captcha-input:focus { border-color: var(--p,#6c63ff); box-shadow: 0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.1); }
.captcha-refresh { width: 38px; height: 38px; border-radius: 50%; background: #e0e2f0; color: #64748b; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all .2s; border: none; flex-shrink: 0; }
.captcha-refresh:hover { background: var(--p,#6c63ff); color: #fff; }

/* Quiz Captcha */
.captcha-quiz { flex-direction: column; align-items: stretch; gap: 14px; }
.captcha-header { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: #1e1e3a; }
.captcha-header i { font-size: 20px; flex-shrink: 0; }
.captcha-options { display: flex; gap: 10px; flex-wrap: wrap; }
.captcha-opt { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: #fff; border: 1.5px solid #e0e2f0; border-radius: 10px; cursor: pointer; transition: all .2s; font-size: 14px; font-weight: 600; color: #475569; flex: 1; justify-content: center; min-width: 80px; }
.captcha-opt:hover { border-color: var(--p,#6c63ff); background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.07); }
.captcha-opt input { display: none; }
.captcha-opt input:checked + span { color: var(--p,#6c63ff); }
.captcha-opt:has(input:checked) { border-color: var(--p,#6c63ff); background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.07); box-shadow: 0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.12); }
.captcha-quiz .captcha-refresh { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; font-size: 12px; }

/* Emoji Captcha */
.captcha-emoji { flex-direction: column; align-items: stretch; gap: 14px; }
.captcha-emoji-grid { display: flex; gap: 12px; justify-content: center; }
.captcha-emoji-opt { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: #fff; border: 2px solid #e0e2f0; border-radius: 14px; cursor: pointer; transition: all .2s; }
.captcha-emoji-opt:hover { border-color: var(--p,#6c63ff); transform: scale(1.08); }
.captcha-emoji-opt input { display: none; }
.captcha-emoji-opt:has(input:checked) { border-color: var(--p,#6c63ff); background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.07); box-shadow: 0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15); transform: scale(1.08); }
.emoji-icon { font-size: 32px; line-height: 1; }
.captcha-emoji .captcha-refresh { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; font-size: 12px; }

/* ── Auth Features proper display (2x grid, no scroll) - v4.1 ── */
.auth-features {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-bottom: 30px;
  max-height: none;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}
.auth-features .auth-feature {
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
}
.auth-features .auth-feature h4,
.auth-features .auth-feature p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.auth-features[style*="display:none"],
.auth-features[style*="display: none"] {
  display: none !important;
}
@media (max-width: 500px) {
  .auth-features { grid-template-columns: 1fr; }
}

/* Extra color variants for 5th-8th features */
.auth-feature:nth-child(5) .af-icon { background: rgba(236,72,153,.12); color: #ec4899; }
.auth-feature:nth-child(6) .af-icon { background: rgba(20,184,166,.12); color: #14b8a6; }
.auth-feature:nth-child(7) .af-icon { background: rgba(249,115,22,.12); color: #f97316; }
.auth-feature:nth-child(8) .af-icon { background: rgba(99,102,241,.12); color: #6366f1; }

/* ── Decorative Animated Elements ── */
.auth-deco-particles,
.auth-deco-circles,
.auth-deco-grid,
.auth-deco-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Floating particles */
.auth-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  animation: authParticleFloat linear infinite;
}
.auth-particle.p1 { left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; width: 3px; height: 3px; }
.auth-particle.p2 { left: 30%; top: 60%; animation-duration: 15s; animation-delay: -2s; width: 5px; height: 5px; background: rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.2); }
.auth-particle.p3 { left: 70%; top: 30%; animation-duration: 10s; animation-delay: -4s; }
.auth-particle.p4 { left: 85%; top: 70%; animation-duration: 18s; animation-delay: -6s; width: 3px; height: 3px; }
.auth-particle.p5 { left: 50%; top: 80%; animation-duration: 14s; animation-delay: -1s; width: 6px; height: 6px; background: rgba(var(--s-r,255),var(--s-g,101),var(--s-b,132),.12); }
.auth-particle.p6 { left: 20%; top: 45%; animation-duration: 16s; animation-delay: -3s; width: 3px; height: 3px; }
.auth-particle.p7 { left: 60%; top: 15%; animation-duration: 11s; animation-delay: -5s; width: 4px; height: 4px; background: rgba(56,239,125,.12); }
.auth-particle.p8 { left: 90%; top: 50%; animation-duration: 13s; animation-delay: -7s; }

@keyframes authParticleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}

/* Floating gradient circles */
.auth-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: authCircleFloat ease-in-out infinite;
}
.auth-circle.c1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--p,#6c63ff), transparent 70%);
  top: 10%; right: -40px;
  animation-duration: 8s;
}
.auth-circle.c2 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--s,#ff6584), transparent 70%);
  bottom: 15%; left: -30px;
  animation-duration: 10s;
  animation-delay: -3s;
}
.auth-circle.c3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #38ef7d, transparent 70%);
  top: 50%; left: 40%;
  animation-duration: 12s;
  animation-delay: -6s;
}

@keyframes authCircleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(15px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 15px) scale(.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Animated grid mesh */
.auth-deco-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: authGridShift 20s linear infinite;
}

@keyframes authGridShift {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Animated lines */
.auth-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15), transparent);
  animation: authLineSweep linear infinite;
}
.auth-line.l1 { top: 25%; left: 0; width: 60%; animation-duration: 6s; }
.auth-line.l2 { top: 55%; right: 0; width: 45%; animation-duration: 8s; animation-delay: -2s; background: linear-gradient(90deg, transparent, rgba(var(--s-r,255),var(--s-g,101),var(--s-b,132),.12), transparent); }
.auth-line.l3 { top: 78%; left: 10%; width: 50%; animation-duration: 7s; animation-delay: -4s; background: linear-gradient(90deg, transparent, rgba(56,239,125,.1), transparent); }

@keyframes authLineSweep {
  0% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .auth-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .auth-left {
    display: none;
  }

  .auth-right {
    width: 100%;
    min-width: unset;
    padding: 40px 24px;
  }

  .auth-split.auth-inline {
    margin: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .auth-right {
    padding: 28px 16px;
  }

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

  .otp-digit {
    width: 38px;
    height: 46px;
    font-size: 16px;
  }

  .account-type-selector {
    flex-direction: column;
  }
}

/* ===== DARK MODE ===== */
[data-theme="dark"] .auth-split-body{background:#0f172a}
[data-theme="dark"] .auth-right{background:#1e293b}
[data-theme="dark"] .auth-split.auth-inline{border-color:#334155;box-shadow:0 20px 60px rgba(0,0,0,.3)}
[data-theme="dark"] .auth-tabs-wrap{background:#0f172a}
[data-theme="dark"] .auth-tabs-wrap .auth-tab{color:#94a3b8}
[data-theme="dark"] .auth-tabs-wrap .auth-tab:hover{color:#c4b5fd}
[data-theme="dark"] .auth-tabs-wrap .auth-tab.active{background:#1e293b;color:var(--p,#6c63ff);box-shadow:0 2px 8px rgba(0,0,0,.2)}
[data-theme="dark"] .form-label{color:#e2e8f0}
[data-theme="dark"] .form-input{background:#0f172a;border-color:#334155;color:#e2e8f0}
[data-theme="dark"] .form-input:focus{border-color:var(--p,#6c63ff);box-shadow:0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15)}
[data-theme="dark"] .form-input::placeholder{color:#64748b}
[data-theme="dark"] .input-ic{color:#64748b}
[data-theme="dark"] .input-toggle{color:#94a3b8}
[data-theme="dark"] .at-option{border-color:#334155;color:#94a3b8;background:transparent}
[data-theme="dark"] .at-option:hover{border-color:var(--p,#6c63ff)}
[data-theme="dark"] .at-option.active{border-color:var(--p,#6c63ff);background:rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.08);color:var(--p,#6c63ff)}
[data-theme="dark"] .social-btn{background:#0f172a;border-color:#334155;color:#e2e8f0}
[data-theme="dark"] .social-btn:hover{border-color:var(--p,#6c63ff);background:#1e293b}
[data-theme="dark"] .google-btn:hover{border-color:#4285F4;color:#93c5fd;background:rgba(66,133,244,.1)}
[data-theme="dark"] .auth-divider{color:#64748b}
[data-theme="dark"] .auth-divider::before,[data-theme="dark"] .auth-divider::after{background:#334155}
[data-theme="dark"] .checkbox-label{color:#94a3b8}
[data-theme="dark"] .auth-msg.error{background:rgba(239,68,68,.12);color:#fca5a5;border-color:rgba(239,68,68,.25)}
[data-theme="dark"] .auth-msg.success{background:rgba(16,185,129,.12);color:#6ee7b7;border-color:rgba(16,185,129,.25)}
[data-theme="dark"] .otp-box{background:#0f172a}
[data-theme="dark"] .otp-box p{color:#94a3b8}
[data-theme="dark"] .otp-digit{background:#1e293b;border-color:#334155;color:var(--p,#6c63ff)}
[data-theme="dark"] .otp-digit:focus{border-color:var(--p,#6c63ff);box-shadow:0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15)}
[data-theme="dark"] .captcha-box{background:#0f172a;border-color:#334155}
[data-theme="dark"] .captcha-question{color:#e2e8f0}
[data-theme="dark"] .captcha-input{background:#1e293b;border-color:#334155;color:var(--p,#6c63ff)}
[data-theme="dark"] .captcha-input:focus{border-color:var(--p,#6c63ff);box-shadow:0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.15)}
[data-theme="dark"] .captcha-refresh{background:#334155;color:#94a3b8}
[data-theme="dark"] .captcha-refresh:hover{background:var(--p,#6c63ff);color:#fff}
[data-theme="dark"] .captcha-opt{background:#1e293b;border-color:#334155;color:#94a3b8}
[data-theme="dark"] .captcha-opt:hover{border-color:var(--p,#6c63ff);background:rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.08)}
[data-theme="dark"] .captcha-opt:has(input:checked){border-color:var(--p,#6c63ff);background:rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.1);box-shadow:0 0 0 3px rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.12)}
[data-theme="dark"] .captcha-emoji-opt{background:#1e293b;border-color:#334155}
[data-theme="dark"] .captcha-emoji-opt:hover{border-color:var(--p,#6c63ff)}
[data-theme="dark"] .captcha-emoji-opt:has(input:checked){border-color:var(--p,#6c63ff);background:rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.1)}
[data-theme="dark"] .captcha-header{color:#e2e8f0}
[data-theme="dark"] .pass-strength{color:#94a3b8}

/* ================================================================
   AUTH TEMPLATES — 5 SCHEMES
   1) split-modern   : Varsayılan, geniş sol branding + geniş sağ form
   2) split-reverse  : Sol form, sağ branding
   3) card-centered  : Merkez kart: üstte branding, altta form
   4) gradient-wave  : Hero branding + dalga SVG + form
   5) minimal-glass  : Tam ekran gradient üzerinde cam (glass) kart
   ================================================================ */

/* Ortak dekoratif sahne */
.auth-bg-stage{position:fixed;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.auth-bg-orb{position:absolute;border-radius:50%;filter:blur(60px);opacity:.55;mix-blend-mode:screen;animation:authOrbFloat 18s ease-in-out infinite}
.auth-bg-orb.orb-1{width:520px;height:520px;background:radial-gradient(circle,var(--p,#6c63ff),transparent 65%);top:-120px;left:-120px;animation-delay:-2s}
.auth-bg-orb.orb-2{width:460px;height:460px;background:radial-gradient(circle,var(--s,#ff6584),transparent 65%);bottom:-120px;right:-100px;animation-delay:-7s}
.auth-bg-orb.orb-3{width:360px;height:360px;background:radial-gradient(circle,var(--acc,#38ef7d),transparent 65%);top:40%;left:45%;animation-delay:-12s;opacity:.35}
@keyframes authOrbFloat{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(30px,-20px) scale(1.05)}66%{transform:translate(-20px,25px) scale(.96)}}

/* ========= 1) SPLIT-MODERN (geniş varsayılan) ========= */
.auth-split.auth-tpl-split-modern{background:#f7f8ff}
.auth-split.auth-tpl-split-modern .auth-left{flex:1 1 auto;min-width:0}
.auth-split.auth-tpl-split-modern .auth-left-content{max-width:640px;padding:72px 64px}
.auth-split.auth-tpl-split-modern .auth-right{width:640px;min-width:560px;padding:60px 72px}
.auth-split.auth-tpl-split-modern .auth-right-content{max-width:520px}
.auth-split.auth-tpl-split-modern .auth-brand h1{font-size:36px;line-height:1.15}
.auth-split.auth-tpl-split-modern .auth-brand-icon{width:72px;height:72px;border-radius:22px}
.auth-split.auth-tpl-split-modern .auth-features{gap:14px}
.auth-split.auth-tpl-split-modern .auth-feature{padding:14px 16px;border-radius:14px}
.auth-split.auth-tpl-split-modern .auth-feature h4{font-size:13px}
.auth-split.auth-tpl-split-modern .auth-feature p{font-size:12px;-webkit-line-clamp:3}

/* ========= 2) SPLIT-REVERSE (sol form, sağ branding) ========= */
.auth-split.auth-tpl-split-reverse{flex-direction:row-reverse;background:#f7f8ff}
.auth-split.auth-tpl-split-reverse .auth-left{flex:1 1 auto;min-width:0}
.auth-split.auth-tpl-split-reverse .auth-left-content{max-width:640px;padding:72px 64px}
.auth-split.auth-tpl-split-reverse .auth-right{width:640px;min-width:560px;padding:60px 72px}
.auth-split.auth-tpl-split-reverse .auth-right-content{max-width:520px}
.auth-split.auth-tpl-split-reverse .auth-brand h1{font-size:36px}

/* ========= 3) CARD-CENTERED (üstte branding + altta form) ========= */
.auth-split.auth-tpl-card-centered{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 20px;min-height:100vh;background:linear-gradient(135deg,#eef0ff 0%,#fbe8ef 50%,#e8f6ff 100%);position:relative}
.auth-split.auth-tpl-card-centered .auth-left,
.auth-split.auth-tpl-card-centered .auth-right{width:100%;min-width:0;max-width:1000px;min-height:auto;background:transparent;position:relative;z-index:1}
.auth-split.auth-tpl-card-centered .auth-left{background:linear-gradient(135deg,#0f0f1e,#1a1040);border-radius:24px 24px 0 0;padding:0;margin:0 auto;box-shadow:0 30px 80px -30px rgba(91,63,255,.35)}
.auth-split.auth-tpl-card-centered .auth-left-content{max-width:100%;padding:44px 48px 36px;display:grid;grid-template-columns:260px 1fr;gap:36px;align-items:center}
.auth-split.auth-tpl-card-centered .auth-brand{margin-bottom:0}
.auth-split.auth-tpl-card-centered .auth-features{margin-bottom:0;grid-template-columns:1fr 1fr !important;gap:10px !important}
.auth-split.auth-tpl-card-centered .auth-feature{padding:8px 10px}
.auth-split.auth-tpl-card-centered .auth-feature p{-webkit-line-clamp:2;font-size:10.5px}
.auth-split.auth-tpl-card-centered .auth-left-footer{display:none}
.auth-split.auth-tpl-card-centered .auth-back{position:absolute;top:20px;left:24px;margin:0;z-index:3}
.auth-split.auth-tpl-card-centered .auth-right{background:#fff;border-radius:0 0 24px 24px;padding:48px 60px 56px;margin:0 auto;box-shadow:0 30px 80px -30px rgba(15,15,30,.25);justify-content:flex-start}
.auth-split.auth-tpl-card-centered .auth-right-content{max-width:680px;margin:0 auto}
.auth-split.auth-tpl-card-centered .auth-deco-particles,
.auth-split.auth-tpl-card-centered .auth-deco-circles,
.auth-split.auth-tpl-card-centered .auth-deco-grid,
.auth-split.auth-tpl-card-centered .auth-deco-lines,
.auth-split.auth-tpl-card-centered .auth-left-bg{border-radius:24px 24px 0 0}

/* ========= 4) GRADIENT-WAVE (üst dalga hero + form) ========= */
.auth-split.auth-tpl-gradient-wave{display:flex;flex-direction:column;align-items:center;padding:0 20px 60px;min-height:100vh;background:#f8f9ff;position:relative;overflow-x:hidden}
.auth-split.auth-tpl-gradient-wave .auth-left{width:100%;min-width:0;max-width:none;min-height:380px;background:linear-gradient(135deg,var(--p,#6c63ff) 0%,var(--s,#ff6584) 100%);position:relative;margin-bottom:-140px;padding:50px 24px 160px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.auth-split.auth-tpl-gradient-wave .auth-left-content{max-width:900px;padding:0;text-align:center;display:flex;flex-direction:column;align-items:center;position:relative;z-index:3}
.auth-split.auth-tpl-gradient-wave .auth-brand{margin-bottom:20px;text-align:center}
.auth-split.auth-tpl-gradient-wave .auth-brand-icon{margin:0 auto 16px}
.auth-split.auth-tpl-gradient-wave .auth-features{grid-template-columns:repeat(4,1fr) !important;max-width:900px;gap:10px !important;margin-bottom:0}
.auth-split.auth-tpl-gradient-wave .auth-feature{padding:10px 12px;background:rgba(255,255,255,.12);backdrop-filter:blur(8px);border-color:rgba(255,255,255,.22)}
.auth-split.auth-tpl-gradient-wave .auth-feature p{-webkit-line-clamp:2;font-size:10.5px}
.auth-split.auth-tpl-gradient-wave .auth-left-footer{display:none}
.auth-split.auth-tpl-gradient-wave .auth-back{position:absolute;top:20px;left:24px;margin:0;color:rgba(255,255,255,.85)}
.auth-split.auth-tpl-gradient-wave .auth-right{width:100%;max-width:560px;min-width:0;margin:0 auto;padding:40px 44px;background:#fff;border-radius:20px;box-shadow:0 30px 70px -30px rgba(15,15,30,.3);position:relative;z-index:2}
.auth-split.auth-tpl-gradient-wave .auth-right-content{max-width:480px;margin:0 auto}
.auth-wave-svg{position:absolute;left:0;right:0;bottom:-2px;width:100%;height:160px;z-index:1;pointer-events:none}
.auth-wave-svg .wave-path{fill:#f8f9ff}
.auth-wave-svg .wave-path.wp1{opacity:.55}
.auth-wave-svg .wave-path.wp2{opacity:1}
.auth-split.auth-tpl-gradient-wave .auth-deco-particles,
.auth-split.auth-tpl-gradient-wave .auth-deco-circles,
.auth-split.auth-tpl-gradient-wave .auth-deco-grid,
.auth-split.auth-tpl-gradient-wave .auth-deco-lines,
.auth-split.auth-tpl-gradient-wave .auth-left-bg{border-radius:0}
.auth-split.auth-tpl-gradient-wave .auth-bg-stage{position:absolute}

/* ========= 5) MINIMAL-GLASS (cam kart + gradient) ========= */
.auth-split.auth-tpl-minimal-glass{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:40px 20px;background:linear-gradient(120deg,#2e1e7a 0%,#4834b0 40%,#7c3aed 70%,#ec4899 100%);position:relative;overflow:hidden}
.auth-split.auth-tpl-minimal-glass .auth-left,
.auth-split.auth-tpl-minimal-glass .auth-right{position:relative;z-index:2;min-height:auto;background:transparent;padding:0}
.auth-split.auth-tpl-minimal-glass{gap:0}
.auth-split.auth-tpl-minimal-glass>.auth-left,
.auth-split.auth-tpl-minimal-glass>.auth-right{backdrop-filter:blur(22px);-webkit-backdrop-filter:blur(22px);background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);box-shadow:0 30px 80px -30px rgba(0,0,0,.45)}
.auth-split.auth-tpl-minimal-glass .auth-left{flex:0 0 460px;border-radius:24px 0 0 24px;border-right:none;padding:48px 44px;display:flex;align-items:center}
.auth-split.auth-tpl-minimal-glass .auth-right{flex:0 0 560px;border-radius:0 24px 24px 0;padding:48px 52px;background:rgba(255,255,255,.92);color:#1e1e3a}
.auth-split.auth-tpl-minimal-glass .auth-left-content{max-width:100%;padding:0;position:relative;z-index:3}
.auth-split.auth-tpl-minimal-glass .auth-right-content{max-width:100%}
.auth-split.auth-tpl-minimal-glass .auth-brand h1{font-size:30px}
.auth-split.auth-tpl-minimal-glass .auth-features{grid-template-columns:1fr !important;gap:8px !important}
.auth-split.auth-tpl-minimal-glass .auth-feature{padding:10px 12px;background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.18)}
.auth-split.auth-tpl-minimal-glass .auth-feature p{-webkit-line-clamp:2;font-size:11px}
.auth-split.auth-tpl-minimal-glass .auth-left-footer{display:none}
.auth-split.auth-tpl-minimal-glass .auth-deco-particles,
.auth-split.auth-tpl-minimal-glass .auth-deco-circles,
.auth-split.auth-tpl-minimal-glass .auth-deco-grid,
.auth-split.auth-tpl-minimal-glass .auth-deco-lines,
.auth-split.auth-tpl-minimal-glass .auth-left-bg{display:none}
.auth-glass-mesh{position:absolute;inset:0;background-image:radial-gradient(circle at 20% 30%,rgba(255,255,255,.12) 0,transparent 35%),radial-gradient(circle at 80% 70%,rgba(255,255,255,.1) 0,transparent 40%);pointer-events:none}

/* Responsive (her şablon için) */
@media (max-width:1100px){
  .auth-split.auth-tpl-split-modern .auth-left-content,
  .auth-split.auth-tpl-split-reverse .auth-left-content{padding:60px 44px}
  .auth-split.auth-tpl-split-modern .auth-right,
  .auth-split.auth-tpl-split-reverse .auth-right{width:560px;min-width:500px;padding:50px 56px}
  .auth-split.auth-tpl-card-centered .auth-left-content{grid-template-columns:1fr;gap:18px;padding:36px 32px 28px;text-align:center}
  .auth-split.auth-tpl-card-centered .auth-brand{text-align:center}
  .auth-split.auth-tpl-card-centered .auth-brand-icon{margin:0 auto 14px}
  .auth-split.auth-tpl-card-centered .auth-right{padding:40px 44px 48px}
  .auth-split.auth-tpl-gradient-wave .auth-features{grid-template-columns:repeat(2,1fr) !important}
  .auth-split.auth-tpl-minimal-glass .auth-left{flex:0 0 380px;padding:40px 32px}
  .auth-split.auth-tpl-minimal-glass .auth-right{flex:0 0 500px;padding:40px 40px}
}
@media (max-width:900px){
  .auth-split.auth-tpl-split-modern,
  .auth-split.auth-tpl-split-reverse{flex-direction:column}
  .auth-split.auth-tpl-split-modern .auth-left,
  .auth-split.auth-tpl-split-reverse .auth-left{display:flex;min-height:auto;padding:30px 0}
  .auth-split.auth-tpl-split-modern .auth-left-content,
  .auth-split.auth-tpl-split-reverse .auth-left-content{padding:30px 24px}
  .auth-split.auth-tpl-split-modern .auth-right,
  .auth-split.auth-tpl-split-reverse .auth-right{width:100%;min-width:0;padding:40px 24px}
  .auth-split.auth-tpl-minimal-glass{flex-direction:column}
  .auth-split.auth-tpl-minimal-glass .auth-left{flex:0 0 auto;border-radius:20px 20px 0 0;width:100%;max-width:520px;padding:32px 28px}
  .auth-split.auth-tpl-minimal-glass .auth-right{flex:0 0 auto;border-radius:0 0 20px 20px;width:100%;max-width:520px;padding:36px 32px}
  .auth-split.auth-tpl-gradient-wave .auth-features{grid-template-columns:repeat(2,1fr) !important}
  .auth-split.auth-tpl-gradient-wave .auth-right{padding:32px 28px}
}
@media (max-width:600px){
  .auth-split.auth-tpl-card-centered .auth-features,
  .auth-split.auth-tpl-gradient-wave .auth-features{grid-template-columns:1fr !important}
  .auth-split.auth-tpl-card-centered .auth-right,
  .auth-split.auth-tpl-gradient-wave .auth-right{padding:28px 20px}
}

/* Dark mode tweaks for new templates */
[data-theme="dark"] .auth-split.auth-tpl-split-modern,
[data-theme="dark"] .auth-split.auth-tpl-split-reverse{background:#0b1120}
[data-theme="dark"] .auth-split.auth-tpl-card-centered{background:linear-gradient(135deg,#0b1120 0%,#1a1040 50%,#0f172a 100%)}
[data-theme="dark"] .auth-split.auth-tpl-card-centered .auth-right{background:#1e293b;color:#e2e8f0}
[data-theme="dark"] .auth-split.auth-tpl-gradient-wave{background:#0b1120}
[data-theme="dark"] .auth-split.auth-tpl-gradient-wave .auth-right{background:#1e293b;color:#e2e8f0}
[data-theme="dark"] .auth-wave-svg .wave-path{fill:#0b1120}
[data-theme="dark"] .auth-split.auth-tpl-minimal-glass .auth-right{background:rgba(30,41,59,.92);color:#e2e8f0}

/* ================================================================
   EK ŞABLONLAR (v2) — farklı oran & farklı kart tasarımları
   6) wide-left        : Sol %68 geniş branding, sağ %32 dar form
   7) wide-right       : Sol %30 dar branding, sağ %70 geniş form
   8) hero-fullscreen  : Tam ekran görsel/gradient + sağda floating kart
   9) neo-brutal       : Neo-brutalism: sert gölge, flat renkler, kalın border
   10) dark-luxe       : Siyah + altın, lüks serif tipografi, alt-çizgili input
   ================================================================ */

/* ========= 6) WIDE-LEFT (geniş sol, dar sağ) ========= */
.auth-split.auth-tpl-wide-left{background:#f7f8ff}
.auth-split.auth-tpl-wide-left .auth-left{flex:0 0 68%;min-width:0}
.auth-split.auth-tpl-wide-left .auth-left-content{max-width:760px;padding:80px 72px}
.auth-split.auth-tpl-wide-left .auth-brand h1{font-size:44px;line-height:1.12;letter-spacing:-.5px}
.auth-split.auth-tpl-wide-left .auth-brand p{font-size:16px;max-width:540px}
.auth-split.auth-tpl-wide-left .auth-brand-icon{width:84px;height:84px;border-radius:26px;margin-bottom:24px}
.auth-split.auth-tpl-wide-left .auth-features{grid-template-columns:repeat(2,1fr) !important;gap:14px !important;max-width:620px}
.auth-split.auth-tpl-wide-left .auth-feature{padding:14px 16px;border-radius:14px}
.auth-split.auth-tpl-wide-left .auth-feature h4{font-size:13px}
.auth-split.auth-tpl-wide-left .auth-feature p{font-size:11.5px;-webkit-line-clamp:2}
.auth-split.auth-tpl-wide-left .auth-right{flex:0 0 32%;width:auto;min-width:420px;max-width:520px;padding:50px 44px}
.auth-split.auth-tpl-wide-left .auth-right-content{max-width:380px}
.auth-split.auth-tpl-wide-left .auth-right .auth-tab{font-size:13px;padding:10px}

/* ========= 7) WIDE-RIGHT (dar sol, geniş sağ) ========= */
.auth-split.auth-tpl-wide-right{background:#f7f8ff}
.auth-split.auth-tpl-wide-right .auth-left{flex:0 0 32%;min-width:0;max-width:440px}
.auth-split.auth-tpl-wide-right .auth-left-content{padding:54px 38px;max-width:400px}
.auth-split.auth-tpl-wide-right .auth-brand h1{font-size:26px}
.auth-split.auth-tpl-wide-right .auth-features{grid-template-columns:1fr !important;gap:10px !important}
.auth-split.auth-tpl-wide-right .auth-feature{padding:11px 13px}
.auth-split.auth-tpl-wide-right .auth-feature p{-webkit-line-clamp:2;font-size:11px}
.auth-split.auth-tpl-wide-right .auth-right{flex:1 1 auto;width:auto;min-width:0;padding:70px 80px}
.auth-split.auth-tpl-wide-right .auth-right-content{max-width:720px;margin:0 auto}
.auth-split.auth-tpl-wide-right .auth-tabs-wrap{max-width:420px;margin-left:auto;margin-right:auto;margin-bottom:36px}
.auth-split.auth-tpl-wide-right .form-row{grid-template-columns:1fr 1fr;gap:18px}
.auth-split.auth-tpl-wide-right .form-input{padding:14px 16px;padding-left:44px;font-size:15px}
.auth-split.auth-tpl-wide-right .btn-auth{padding:16px;font-size:16px;border-radius:14px}

/* ========= 8) HERO-FULLSCREEN (tam ekran görsel + floating kart) ========= */
.auth-split.auth-tpl-hero-fullscreen{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:flex-end;padding:40px 6vw;background:#0b0f19;overflow:hidden}
.auth-hero-img{position:absolute;inset:0;background:linear-gradient(135deg,#1e1b4b 0%,#312e81 30%,#4c1d95 60%,#831843 100%);background-size:cover;background-position:center;z-index:0}
.auth-hero-veil{position:absolute;inset:0;background:radial-gradient(ellipse at 30% 50%,transparent 0%,rgba(0,0,0,.4) 70%,rgba(0,0,0,.7) 100%);z-index:0}
.auth-split.auth-tpl-hero-fullscreen .auth-left{flex:1 1 auto;min-width:0;background:transparent;position:relative;z-index:2;display:flex;align-items:center;min-height:auto;padding:0;margin-right:40px}
.auth-split.auth-tpl-hero-fullscreen .auth-left-content{padding:0 0 0 40px;max-width:640px}
.auth-split.auth-tpl-hero-fullscreen .auth-brand h1{font-size:56px;line-height:1.05;letter-spacing:-1px;background:linear-gradient(135deg,#fff,#c4b5fd,#fbcfe8);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}
.auth-split.auth-tpl-hero-fullscreen .auth-brand p{font-size:17px;max-width:520px;color:rgba(255,255,255,.8)}
.auth-split.auth-tpl-hero-fullscreen .auth-features{grid-template-columns:repeat(2,1fr) !important;max-width:560px;gap:10px !important}
.auth-split.auth-tpl-hero-fullscreen .auth-feature{padding:10px 12px;background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.16);backdrop-filter:blur(10px)}
.auth-split.auth-tpl-hero-fullscreen .auth-feature p{-webkit-line-clamp:2;font-size:11px}
.auth-split.auth-tpl-hero-fullscreen .auth-left-footer{display:none}
.auth-split.auth-tpl-hero-fullscreen .auth-deco-particles,
.auth-split.auth-tpl-hero-fullscreen .auth-deco-circles,
.auth-split.auth-tpl-hero-fullscreen .auth-deco-grid,
.auth-split.auth-tpl-hero-fullscreen .auth-deco-lines,
.auth-split.auth-tpl-hero-fullscreen .auth-left-bg{display:none}
.auth-split.auth-tpl-hero-fullscreen .auth-right{width:520px;min-width:460px;flex:0 0 auto;background:rgba(255,255,255,.96);border-radius:24px;padding:44px 48px;box-shadow:0 40px 100px -20px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.15);backdrop-filter:blur(16px);position:relative;z-index:2;min-height:auto}
.auth-split.auth-tpl-hero-fullscreen .auth-right-content{max-width:440px;margin:0 auto}
.auth-split.auth-tpl-hero-fullscreen .auth-tabs-wrap{background:#f1f5f9}

/* ========= 9) NEO-BRUTAL (sert gölge + flat renk + kalın border) ========= */
.auth-split.auth-tpl-neo-brutal{background:#fef08a;display:flex;align-items:center;justify-content:center;min-height:100vh;padding:40px 20px;position:relative;overflow:hidden}
.auth-split.auth-tpl-neo-brutal::before{content:'';position:absolute;inset:0;background-image:radial-gradient(circle,rgba(0,0,0,.08) 1.5px,transparent 1.5px);background-size:24px 24px;pointer-events:none;z-index:0}
.auth-split.auth-tpl-neo-brutal .auth-left,
.auth-split.auth-tpl-neo-brutal .auth-right{position:relative;z-index:1;min-height:auto}
.auth-split.auth-tpl-neo-brutal .auth-left{flex:0 0 480px;max-width:480px;background:#000;border:4px solid #000;border-right:none;padding:44px 38px;box-shadow:none;display:flex;align-items:center;border-radius:0}
.auth-split.auth-tpl-neo-brutal .auth-left-content{padding:0;max-width:100%}
.auth-split.auth-tpl-neo-brutal .auth-brand-icon{border-radius:0;border:4px solid #fff;background:#ec4899;box-shadow:6px 6px 0 #fff;width:72px;height:72px}
.auth-split.auth-tpl-neo-brutal .auth-brand h1{font-size:36px;line-height:1.05;font-weight:900;text-transform:uppercase;letter-spacing:-1px;color:#fef08a}
.auth-split.auth-tpl-neo-brutal .auth-brand p{color:rgba(255,255,255,.8);font-size:14px;font-weight:500}
.auth-split.auth-tpl-neo-brutal .auth-features{grid-template-columns:1fr !important;gap:10px !important}
.auth-split.auth-tpl-neo-brutal .auth-feature{background:#fef08a;color:#000;border:3px solid #fff;border-radius:0;box-shadow:4px 4px 0 #fff;padding:12px 14px}
.auth-split.auth-tpl-neo-brutal .auth-feature h4{color:#000;font-size:13px;font-weight:900;text-transform:uppercase}
.auth-split.auth-tpl-neo-brutal .auth-feature p{color:rgba(0,0,0,.7);font-size:11px;-webkit-line-clamp:2}
.auth-split.auth-tpl-neo-brutal .af-icon{background:#ec4899 !important;color:#fff !important;border:2px solid #000;border-radius:0;box-shadow:3px 3px 0 #000}
.auth-split.auth-tpl-neo-brutal .auth-left-footer{display:none}
.auth-split.auth-tpl-neo-brutal .auth-deco-particles,
.auth-split.auth-tpl-neo-brutal .auth-deco-circles,
.auth-split.auth-tpl-neo-brutal .auth-deco-grid,
.auth-split.auth-tpl-neo-brutal .auth-deco-lines,
.auth-split.auth-tpl-neo-brutal .auth-left-bg{display:none}
.auth-split.auth-tpl-neo-brutal .auth-right{flex:0 0 520px;max-width:520px;background:#fff;border:4px solid #000;border-radius:0;padding:40px 40px;box-shadow:10px 10px 0 #000;min-width:0}
.auth-split.auth-tpl-neo-brutal .auth-right-content{max-width:100%}
.auth-split.auth-tpl-neo-brutal .auth-tabs-wrap{background:#000;border-radius:0;padding:0;border:3px solid #000}
.auth-split.auth-tpl-neo-brutal .auth-tabs-wrap .auth-tab{border-radius:0;color:#fef08a;font-weight:900;text-transform:uppercase;padding:12px 10px}
.auth-split.auth-tpl-neo-brutal .auth-tabs-wrap .auth-tab.active{background:#ec4899;color:#000;box-shadow:none}
.auth-split.auth-tpl-neo-brutal .form-label{color:#000;font-weight:900;text-transform:uppercase;font-size:12px;letter-spacing:.5px}
.auth-split.auth-tpl-neo-brutal .form-input{background:#fef08a;border:3px solid #000;border-radius:0;color:#000;font-weight:600;padding:13px 16px;padding-left:44px;box-shadow:4px 4px 0 #000;transition:all .15s}
.auth-split.auth-tpl-neo-brutal .form-input:focus{transform:translate(-2px,-2px);box-shadow:6px 6px 0 #ec4899;border-color:#000;outline:none}
.auth-split.auth-tpl-neo-brutal .input-ic{color:#000}
.auth-split.auth-tpl-neo-brutal .btn-auth{background:#000;color:#fef08a;border:3px solid #000;border-radius:0;box-shadow:6px 6px 0 #ec4899;font-weight:900;text-transform:uppercase;padding:16px;font-size:15px;letter-spacing:1px;transition:all .15s}
.auth-split.auth-tpl-neo-brutal .btn-auth:hover{transform:translate(-2px,-2px);box-shadow:8px 8px 0 #ec4899}
.auth-split.auth-tpl-neo-brutal .social-btn{border:3px solid #000;border-radius:0;box-shadow:4px 4px 0 #000;font-weight:800;text-transform:uppercase}
.auth-split.auth-tpl-neo-brutal .social-btn:hover{transform:translate(-2px,-2px);box-shadow:6px 6px 0 #000}
.auth-split.auth-tpl-neo-brutal .at-card{border:3px solid #000 !important;border-radius:0 !important;box-shadow:4px 4px 0 #000;background:#fff}
.auth-split.auth-tpl-neo-brutal .at-card.active{background:#ec4899;box-shadow:6px 6px 0 #000}
.auth-split.auth-tpl-neo-brutal .captcha-box{background:#fef08a;border:3px solid #000;border-radius:0;box-shadow:4px 4px 0 #000}
.auth-split.auth-tpl-neo-brutal .captcha-input{background:#fff;border:2px solid #000;border-radius:0;box-shadow:2px 2px 0 #000}

/* ========= 10) DARK-LUXE (siyah + altın + serif) ========= */
.auth-split.auth-tpl-dark-luxe{background:#0a0a0a;display:flex;min-height:100vh;position:relative;overflow:hidden;color:#e8d9b0}
.auth-luxe-mesh{position:absolute;inset:0;background:radial-gradient(ellipse at 20% 20%,rgba(201,162,39,.15) 0%,transparent 50%),radial-gradient(ellipse at 80% 80%,rgba(201,162,39,.08) 0%,transparent 50%);pointer-events:none;z-index:0}
.auth-luxe-sparkles{position:absolute;inset:0;z-index:0;pointer-events:none}
.auth-luxe-sparkles span{position:absolute;width:3px;height:3px;border-radius:50%;background:#d4af37;box-shadow:0 0 8px #d4af37;animation:luxeSparkle 4s ease-in-out infinite}
.auth-luxe-sparkles span:nth-child(1){top:15%;left:8%;animation-delay:0s}
.auth-luxe-sparkles span:nth-child(2){top:30%;right:12%;animation-delay:-.8s}
.auth-luxe-sparkles span:nth-child(3){top:65%;left:20%;animation-delay:-1.6s}
.auth-luxe-sparkles span:nth-child(4){top:75%;right:25%;animation-delay:-2.4s}
.auth-luxe-sparkles span:nth-child(5){top:45%;left:50%;animation-delay:-3.2s}
.auth-luxe-sparkles span:nth-child(6){top:20%;left:70%;animation-delay:-.4s}
@keyframes luxeSparkle{0%,100%{opacity:0;transform:scale(.5)}50%{opacity:1;transform:scale(1.4)}}
.auth-split.auth-tpl-dark-luxe .auth-left,
.auth-split.auth-tpl-dark-luxe .auth-right{position:relative;z-index:1}
.auth-split.auth-tpl-dark-luxe .auth-left{flex:1 1 auto;background:linear-gradient(160deg,#0a0a0a 0%,#1a1408 60%,#2d2210 100%);border-right:1px solid rgba(212,175,55,.2);padding:0;display:flex;align-items:center}
.auth-split.auth-tpl-dark-luxe .auth-left-content{padding:80px 80px;max-width:640px}
.auth-split.auth-tpl-dark-luxe .auth-back{color:rgba(212,175,55,.7)}
.auth-split.auth-tpl-dark-luxe .auth-back:hover{color:#d4af37}
.auth-split.auth-tpl-dark-luxe .auth-brand-icon{background:linear-gradient(135deg,#d4af37,#8b6f1e);border:1px solid rgba(212,175,55,.4);box-shadow:0 10px 40px rgba(212,175,55,.25);width:76px;height:76px;border-radius:50%}
.auth-split.auth-tpl-dark-luxe .auth-brand h1{font-family:'Playfair Display',Georgia,serif;font-size:48px;font-weight:700;letter-spacing:-.5px;background:linear-gradient(135deg,#f4e5b8 0%,#d4af37 50%,#8b6f1e 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;line-height:1.1}
.auth-split.auth-tpl-dark-luxe .auth-brand p{color:rgba(232,217,176,.7);font-size:15px;font-style:italic;max-width:440px}
.auth-split.auth-tpl-dark-luxe .auth-features{grid-template-columns:1fr 1fr !important;gap:12px !important}
.auth-split.auth-tpl-dark-luxe .auth-feature{background:rgba(212,175,55,.04);border:1px solid rgba(212,175,55,.18);padding:14px 16px;border-radius:2px;position:relative}
.auth-split.auth-tpl-dark-luxe .auth-feature::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(212,175,55,.08),transparent);pointer-events:none;border-radius:2px}
.auth-split.auth-tpl-dark-luxe .auth-feature h4{color:#d4af37;font-family:'Playfair Display',Georgia,serif;font-size:14px;font-weight:700}
.auth-split.auth-tpl-dark-luxe .auth-feature p{color:rgba(232,217,176,.65);-webkit-line-clamp:2;font-size:11.5px}
.auth-split.auth-tpl-dark-luxe .af-icon{background:rgba(212,175,55,.1) !important;color:#d4af37 !important;border:1px solid rgba(212,175,55,.2)}
.auth-split.auth-tpl-dark-luxe .auth-left-footer{border-color:rgba(212,175,55,.15)}
.auth-split.auth-tpl-dark-luxe .auth-left-footer p{color:rgba(212,175,55,.4)}
.auth-split.auth-tpl-dark-luxe .auth-deco-particles,
.auth-split.auth-tpl-dark-luxe .auth-deco-circles,
.auth-split.auth-tpl-dark-luxe .auth-deco-grid,
.auth-split.auth-tpl-dark-luxe .auth-deco-lines,
.auth-split.auth-tpl-dark-luxe .auth-left-bg{display:none}
.auth-split.auth-tpl-dark-luxe .auth-right{width:600px;min-width:520px;background:#0a0a0a;padding:70px 72px;color:#e8d9b0;border-left:1px solid rgba(212,175,55,.2)}
.auth-split.auth-tpl-dark-luxe .auth-right-content{max-width:460px}
.auth-split.auth-tpl-dark-luxe .auth-tabs-wrap{background:transparent;padding:0;border-bottom:1px solid rgba(212,175,55,.2);border-radius:0;margin-bottom:40px}
.auth-split.auth-tpl-dark-luxe .auth-tabs-wrap .auth-tab{color:rgba(232,217,176,.5);background:transparent;border-radius:0;padding:16px 0;border-bottom:2px solid transparent;font-family:'Playfair Display',Georgia,serif;font-size:16px;font-weight:600;letter-spacing:.5px;text-transform:uppercase}
.auth-split.auth-tpl-dark-luxe .auth-tabs-wrap .auth-tab.active{background:transparent;color:#d4af37;box-shadow:none;border-bottom-color:#d4af37}
.auth-split.auth-tpl-dark-luxe .form-label{color:#d4af37;font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase}
.auth-split.auth-tpl-dark-luxe .form-input{background:transparent;border:none;border-bottom:1.5px solid rgba(212,175,55,.3);border-radius:0;color:#e8d9b0;padding:14px 0 14px 36px;font-size:15px;transition:all .25s}
.auth-split.auth-tpl-dark-luxe .form-input:focus{outline:none;border-bottom-color:#d4af37;box-shadow:none}
.auth-split.auth-tpl-dark-luxe .form-input::placeholder{color:rgba(232,217,176,.3)}
.auth-split.auth-tpl-dark-luxe .input-wrap{border:none}
.auth-split.auth-tpl-dark-luxe .input-ic{color:#d4af37;left:0;font-size:14px}
.auth-split.auth-tpl-dark-luxe .input-toggle{color:rgba(212,175,55,.6)}
.auth-split.auth-tpl-dark-luxe .btn-auth{background:linear-gradient(135deg,#d4af37 0%,#8b6f1e 100%);color:#0a0a0a;border:1px solid rgba(212,175,55,.5);border-radius:2px;padding:18px;font-family:'Playfair Display',Georgia,serif;font-size:15px;font-weight:700;letter-spacing:2px;text-transform:uppercase;box-shadow:0 10px 30px -10px rgba(212,175,55,.4)}
.auth-split.auth-tpl-dark-luxe .btn-auth:hover{background:linear-gradient(135deg,#f4e5b8 0%,#d4af37 100%);box-shadow:0 15px 40px -10px rgba(212,175,55,.6)}
.auth-split.auth-tpl-dark-luxe .social-btn{background:transparent;border:1px solid rgba(212,175,55,.3);color:#e8d9b0;border-radius:2px}
.auth-split.auth-tpl-dark-luxe .social-btn:hover{border-color:#d4af37;background:rgba(212,175,55,.05);color:#d4af37}
.auth-split.auth-tpl-dark-luxe .auth-divider{color:rgba(212,175,55,.4);font-style:italic;letter-spacing:2px;text-transform:uppercase;font-size:11px}
.auth-split.auth-tpl-dark-luxe .auth-divider::before,
.auth-split.auth-tpl-dark-luxe .auth-divider::after{background:rgba(212,175,55,.2)}
.auth-split.auth-tpl-dark-luxe .at-card{border:1px solid rgba(212,175,55,.25) !important;background:rgba(212,175,55,.03);border-radius:2px}
.auth-split.auth-tpl-dark-luxe .at-card.active{border-color:#d4af37 !important;background:rgba(212,175,55,.1) !important;box-shadow:0 0 0 1px #d4af37}
.auth-split.auth-tpl-dark-luxe .checkbox-label{color:rgba(232,217,176,.65)}
.auth-split.auth-tpl-dark-luxe .checkbox-label a{color:#d4af37}
.auth-split.auth-tpl-dark-luxe .captcha-box{background:rgba(212,175,55,.04);border-color:rgba(212,175,55,.25);border-radius:2px}
.auth-split.auth-tpl-dark-luxe .captcha-question{color:#d4af37}
.auth-split.auth-tpl-dark-luxe .captcha-input{background:transparent;border:1.5px solid rgba(212,175,55,.3);color:#d4af37;border-radius:2px}
.auth-split.auth-tpl-dark-luxe .captcha-refresh{background:rgba(212,175,55,.15);color:#d4af37}

/* Responsive for the new templates */
@media (max-width:1100px){
  .auth-split.auth-tpl-wide-left .auth-left-content{padding:60px 44px}
  .auth-split.auth-tpl-wide-left .auth-brand h1{font-size:36px}
  .auth-split.auth-tpl-wide-left .auth-features{grid-template-columns:1fr !important}
  .auth-split.auth-tpl-wide-right .auth-right{padding:50px 44px}
  .auth-split.auth-tpl-hero-fullscreen{padding:40px 4vw}
  .auth-split.auth-tpl-hero-fullscreen .auth-brand h1{font-size:44px}
  .auth-split.auth-tpl-dark-luxe .auth-left-content{padding:60px 48px}
  .auth-split.auth-tpl-dark-luxe .auth-brand h1{font-size:38px}
  .auth-split.auth-tpl-dark-luxe .auth-right{padding:54px 52px;width:520px;min-width:460px}
  .auth-split.auth-tpl-neo-brutal{flex-wrap:wrap;justify-content:center}
  .auth-split.auth-tpl-neo-brutal .auth-left,
  .auth-split.auth-tpl-neo-brutal .auth-right{flex:0 0 auto;max-width:520px;width:100%}
  .auth-split.auth-tpl-neo-brutal .auth-left{border-right:4px solid #000;border-bottom:none}
}
@media (max-width:900px){
  .auth-split.auth-tpl-wide-left,
  .auth-split.auth-tpl-wide-right,
  .auth-split.auth-tpl-hero-fullscreen,
  .auth-split.auth-tpl-dark-luxe{flex-direction:column}
  .auth-split.auth-tpl-wide-left .auth-left,
  .auth-split.auth-tpl-wide-right .auth-left,
  .auth-split.auth-tpl-dark-luxe .auth-left{flex:0 0 auto;max-width:none;width:100%}
  .auth-split.auth-tpl-wide-left .auth-left-content,
  .auth-split.auth-tpl-wide-right .auth-left-content,
  .auth-split.auth-tpl-dark-luxe .auth-left-content{padding:40px 28px;max-width:100%}
  .auth-split.auth-tpl-wide-left .auth-right,
  .auth-split.auth-tpl-wide-right .auth-right,
  .auth-split.auth-tpl-dark-luxe .auth-right{flex:0 0 auto;max-width:none;width:100%;min-width:0;padding:44px 28px;border-left:none}
  .auth-split.auth-tpl-hero-fullscreen{justify-content:center;padding:80px 24px 40px}
  .auth-split.auth-tpl-hero-fullscreen .auth-left{margin-right:0;margin-bottom:30px;justify-content:center;text-align:center}
  .auth-split.auth-tpl-hero-fullscreen .auth-left-content{padding:0;text-align:center}
  .auth-split.auth-tpl-hero-fullscreen .auth-brand-icon{margin-left:auto;margin-right:auto}
  .auth-split.auth-tpl-hero-fullscreen .auth-features{grid-template-columns:1fr !important}
  .auth-split.auth-tpl-hero-fullscreen .auth-right{width:100%;max-width:480px;min-width:0}
  .auth-split.auth-tpl-neo-brutal .auth-left,
  .auth-split.auth-tpl-neo-brutal .auth-right{max-width:100%}
}

/* Dark mode tweaks for new templates */
[data-theme="dark"] .auth-split.auth-tpl-wide-left,
[data-theme="dark"] .auth-split.auth-tpl-wide-right{background:#0b1120}
[data-theme="dark"] .auth-split.auth-tpl-hero-fullscreen .auth-right{background:rgba(15,23,42,.96);color:#e2e8f0}
[data-theme="dark"] .auth-split.auth-tpl-hero-fullscreen .auth-tabs-wrap{background:#1e293b}
/* neo-brutal: karanlık modda flat siyah yerine koyu griye çevir */
[data-theme="dark"] .auth-split.auth-tpl-neo-brutal{background:#1a1a1a}
[data-theme="dark"] .auth-split.auth-tpl-neo-brutal .auth-right{background:#0a0a0a;color:#fef08a;box-shadow:10px 10px 0 #ec4899}
[data-theme="dark"] .auth-split.auth-tpl-neo-brutal .form-input{background:#1a1a1a;color:#fef08a}
[data-theme="dark"] .auth-split.auth-tpl-neo-brutal .form-label{color:#fef08a}
[data-theme="dark"] .auth-split.auth-tpl-neo-brutal .input-ic{color:#fef08a}
/* dark-luxe zaten koyu — pass-through */

/* ================================================================
   PANEL GENIŞLIK OVERRIDE
   Admin panelden `--auth-left-w` veya `--auth-right-w` setlenirse,
   her split şablon için genişliği ezilir (0 = şablon varsayılanı korunur).
   ================================================================ */
.auth-split[style*="--auth-left-w"].auth-tpl-split-modern .auth-left,
.auth-split[style*="--auth-left-w"].auth-tpl-split-reverse .auth-left,
.auth-split[style*="--auth-left-w"].auth-tpl-wide-left .auth-left,
.auth-split[style*="--auth-left-w"].auth-tpl-wide-right .auth-left,
.auth-split[style*="--auth-left-w"].auth-tpl-dark-luxe .auth-left,
.auth-split[style*="--auth-left-w"].auth-tpl-minimal-glass .auth-left,
.auth-split[style*="--auth-left-w"].auth-tpl-neo-brutal .auth-left{
  flex:0 0 var(--auth-left-w) !important;
  width:var(--auth-left-w) !important;
  max-width:var(--auth-left-w) !important;
  min-width:0 !important;
}
.auth-split[style*="--auth-right-w"].auth-tpl-split-modern .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-split-reverse .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-wide-left .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-wide-right .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-dark-luxe .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-minimal-glass .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-neo-brutal .auth-right,
.auth-split[style*="--auth-right-w"].auth-tpl-hero-fullscreen .auth-right{
  flex:0 0 var(--auth-right-w) !important;
  width:var(--auth-right-w) !important;
  min-width:var(--auth-right-w) !important;
  max-width:var(--auth-right-w) !important;
}

/* ================================================================
   YENI ŞABLONLAR (v3)
   11) neon-grid      : Cyberpunk neon ızgara + glow formlar
   12) paper-folded   : Kağıt katlı sıcak minimal, bej tonlar
   13) split-triple   : 3 kolon: sol branding | form | sağ tanıtım
   ================================================================ */

/* ========= 11) NEON-GRID (cyberpunk neon) ========= */
.auth-split.auth-tpl-neon-grid{background:#050014;min-height:100vh;display:flex;align-items:center;justify-content:center;padding:40px 20px;position:relative;overflow:hidden;color:#e0e7ff}
.auth-split.auth-tpl-neon-grid::before{content:'';position:absolute;inset:-50%;background:
  linear-gradient(rgba(0,255,255,.15) 1px,transparent 1px),
  linear-gradient(90deg,rgba(0,255,255,.15) 1px,transparent 1px);
  background-size:50px 50px;transform:perspective(800px) rotateX(65deg) translateZ(0);transform-origin:center bottom;animation:neonGridMove 15s linear infinite;pointer-events:none}
.auth-split.auth-tpl-neon-grid::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at center 70%,rgba(236,72,153,.2) 0%,transparent 40%),radial-gradient(ellipse at center 30%,rgba(0,255,255,.12) 0%,transparent 50%);pointer-events:none}
@keyframes neonGridMove{0%{background-position:0 0,0 0}100%{background-position:0 50px,50px 0}}
.auth-split.auth-tpl-neon-grid .auth-left,
.auth-split.auth-tpl-neon-grid .auth-right{position:relative;z-index:2;min-height:auto;background:transparent;padding:0}
.auth-split.auth-tpl-neon-grid .auth-left{flex:0 0 420px;max-width:420px;padding:48px 40px;border:1px solid rgba(0,255,255,.4);background:rgba(5,0,20,.6);backdrop-filter:blur(10px);border-radius:2px;margin-right:-2px;box-shadow:0 0 40px rgba(0,255,255,.2),inset 0 0 20px rgba(236,72,153,.08)}
.auth-split.auth-tpl-neon-grid .auth-left-content{padding:0;max-width:100%}
.auth-split.auth-tpl-neon-grid .auth-brand-icon{background:linear-gradient(135deg,#00ffff,#ec4899);border:1px solid rgba(0,255,255,.5);box-shadow:0 0 30px rgba(0,255,255,.5);border-radius:0;width:68px;height:68px}
.auth-split.auth-tpl-neon-grid .auth-brand h1{font-family:'Plus Jakarta Sans',monospace;font-size:32px;font-weight:800;letter-spacing:2px;text-transform:uppercase;background:linear-gradient(90deg,#00ffff,#ec4899);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;text-shadow:0 0 20px rgba(0,255,255,.5)}
.auth-split.auth-tpl-neon-grid .auth-brand p{color:rgba(200,220,255,.7);font-size:13px;letter-spacing:.5px}
.auth-split.auth-tpl-neon-grid .auth-features{grid-template-columns:1fr !important;gap:8px !important}
.auth-split.auth-tpl-neon-grid .auth-feature{background:rgba(0,255,255,.05);border:1px solid rgba(0,255,255,.25);border-radius:0;padding:10px 12px;position:relative}
.auth-split.auth-tpl-neon-grid .auth-feature::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:linear-gradient(#00ffff,#ec4899);box-shadow:0 0 8px #00ffff}
.auth-split.auth-tpl-neon-grid .auth-feature h4{color:#00ffff;text-shadow:0 0 6px rgba(0,255,255,.5);font-size:12px;text-transform:uppercase;letter-spacing:1px}
.auth-split.auth-tpl-neon-grid .auth-feature p{color:rgba(200,220,255,.6);-webkit-line-clamp:2;font-size:10.5px}
.auth-split.auth-tpl-neon-grid .af-icon{background:rgba(0,255,255,.1) !important;color:#00ffff !important;border:1px solid rgba(0,255,255,.3);border-radius:0;text-shadow:0 0 6px rgba(0,255,255,.5)}
.auth-split.auth-tpl-neon-grid .auth-left-footer{display:none}
.auth-split.auth-tpl-neon-grid .auth-right{flex:0 0 520px;max-width:520px;padding:48px 44px;border:1px solid rgba(236,72,153,.4);background:rgba(15,0,30,.75);backdrop-filter:blur(10px);border-radius:2px;box-shadow:0 0 40px rgba(236,72,153,.25),inset 0 0 20px rgba(0,255,255,.08);color:#e0e7ff}
.auth-split.auth-tpl-neon-grid .auth-deco-particles,
.auth-split.auth-tpl-neon-grid .auth-deco-circles,
.auth-split.auth-tpl-neon-grid .auth-deco-grid,
.auth-split.auth-tpl-neon-grid .auth-deco-lines,
.auth-split.auth-tpl-neon-grid .auth-left-bg{display:none}
.auth-split.auth-tpl-neon-grid .auth-tabs-wrap{background:rgba(0,0,0,.4);border:1px solid rgba(0,255,255,.25);border-radius:0;padding:2px}
.auth-split.auth-tpl-neon-grid .auth-tabs-wrap .auth-tab{border-radius:0;color:rgba(200,220,255,.55);text-transform:uppercase;letter-spacing:1.5px;font-size:12px}
.auth-split.auth-tpl-neon-grid .auth-tabs-wrap .auth-tab.active{background:linear-gradient(135deg,#00ffff,#ec4899);color:#050014;box-shadow:0 0 20px rgba(0,255,255,.5)}
.auth-split.auth-tpl-neon-grid .form-label{color:#00ffff;text-transform:uppercase;font-size:11px;letter-spacing:1.5px;text-shadow:0 0 4px rgba(0,255,255,.4)}
.auth-split.auth-tpl-neon-grid .form-input{background:rgba(0,0,0,.4);border:1px solid rgba(0,255,255,.3);border-radius:0;color:#00ffff;font-family:monospace;padding:13px 16px 13px 44px}
.auth-split.auth-tpl-neon-grid .form-input:focus{border-color:#00ffff;box-shadow:0 0 0 2px rgba(0,255,255,.2),0 0 20px rgba(0,255,255,.3)}
.auth-split.auth-tpl-neon-grid .form-input::placeholder{color:rgba(0,255,255,.3)}
.auth-split.auth-tpl-neon-grid .input-ic{color:#00ffff}
.auth-split.auth-tpl-neon-grid .btn-auth{background:linear-gradient(135deg,#00ffff 0%,#ec4899 100%);color:#050014;border:none;border-radius:0;font-weight:800;text-transform:uppercase;letter-spacing:2px;padding:16px;box-shadow:0 0 30px rgba(0,255,255,.4),0 0 15px rgba(236,72,153,.3)}
.auth-split.auth-tpl-neon-grid .btn-auth:hover{box-shadow:0 0 50px rgba(0,255,255,.6),0 0 30px rgba(236,72,153,.4);transform:translateY(-1px)}
.auth-split.auth-tpl-neon-grid .social-btn{background:rgba(0,0,0,.4);border:1px solid rgba(0,255,255,.25);color:#e0e7ff;border-radius:0}
.auth-split.auth-tpl-neon-grid .social-btn:hover{border-color:#00ffff;box-shadow:0 0 15px rgba(0,255,255,.4)}
.auth-split.auth-tpl-neon-grid .auth-divider{color:rgba(0,255,255,.4);letter-spacing:2px;text-transform:uppercase;font-size:11px}
.auth-split.auth-tpl-neon-grid .auth-divider::before,
.auth-split.auth-tpl-neon-grid .auth-divider::after{background:rgba(0,255,255,.2)}
.auth-split.auth-tpl-neon-grid .at-card{background:rgba(0,0,0,.3) !important;border:1px solid rgba(0,255,255,.25) !important;border-radius:0;color:#e0e7ff}
.auth-split.auth-tpl-neon-grid .at-card.active{background:rgba(0,255,255,.1) !important;border-color:#00ffff !important;box-shadow:0 0 20px rgba(0,255,255,.3)}

/* ========= 12) PAPER-FOLDED (sıcak bej minimal) ========= */
.auth-split.auth-tpl-paper-folded{background:#f3ece0;min-height:100vh;display:flex;align-items:center;justify-content:center;padding:40px 20px;position:relative;overflow:hidden}
.auth-split.auth-tpl-paper-folded::before{content:'';position:absolute;inset:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .4 0 0 0 0 .3 0 0 0 .15 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");opacity:.6;pointer-events:none}
.auth-split.auth-tpl-paper-folded .auth-left,
.auth-split.auth-tpl-paper-folded .auth-right{position:relative;z-index:1;background:transparent;min-height:auto;padding:0}
.auth-split.auth-tpl-paper-folded .auth-left{flex:0 0 440px;max-width:440px;background:#e8dfcc;padding:52px 44px;border-radius:3px;box-shadow:12px 12px 0 -4px rgba(139,110,64,.25),0 10px 30px rgba(139,110,64,.15);position:relative;transform:rotate(-1deg);display:flex;align-items:center}
.auth-split.auth-tpl-paper-folded .auth-left::after{content:'';position:absolute;top:12px;right:12px;bottom:12px;width:2px;background:linear-gradient(#8b6e40,transparent);opacity:.4}
.auth-split.auth-tpl-paper-folded .auth-left-content{padding:0;max-width:100%}
.auth-split.auth-tpl-paper-folded .auth-back{color:#8b6e40}
.auth-split.auth-tpl-paper-folded .auth-back:hover{color:#5c4520}
.auth-split.auth-tpl-paper-folded .auth-brand-icon{background:#5c4520;color:#f3ece0;border-radius:50%;width:68px;height:68px;box-shadow:4px 4px 0 -1px rgba(139,110,64,.35);border:2px solid #f3ece0}
.auth-split.auth-tpl-paper-folded .auth-brand h1{color:#2e2516;font-family:Georgia,'Times New Roman',serif;font-size:32px;font-weight:700;letter-spacing:-.5px}
.auth-split.auth-tpl-paper-folded .auth-brand p{color:#6b5530;font-size:14.5px;line-height:1.6;font-style:italic}
.auth-split.auth-tpl-paper-folded .auth-features{grid-template-columns:1fr !important;gap:8px !important}
.auth-split.auth-tpl-paper-folded .auth-feature{background:#f3ece0;border:1px solid rgba(92,69,32,.15);border-radius:3px;padding:10px 12px;box-shadow:2px 2px 0 rgba(139,110,64,.15)}
.auth-split.auth-tpl-paper-folded .auth-feature h4{color:#2e2516;font-family:Georgia,'Times New Roman',serif;font-size:13px;font-weight:700}
.auth-split.auth-tpl-paper-folded .auth-feature p{color:#6b5530;-webkit-line-clamp:2;font-size:11px}
.auth-split.auth-tpl-paper-folded .af-icon{background:#5c4520 !important;color:#f3ece0 !important;border-radius:50%}
.auth-split.auth-tpl-paper-folded .auth-left-footer{border-color:rgba(92,69,32,.2)}
.auth-split.auth-tpl-paper-folded .auth-left-footer p{color:#8b6e40}
.auth-split.auth-tpl-paper-folded .auth-deco-particles,
.auth-split.auth-tpl-paper-folded .auth-deco-circles,
.auth-split.auth-tpl-paper-folded .auth-deco-grid,
.auth-split.auth-tpl-paper-folded .auth-deco-lines,
.auth-split.auth-tpl-paper-folded .auth-left-bg{display:none}
.auth-split.auth-tpl-paper-folded .auth-right{flex:0 0 480px;max-width:480px;background:#fffaf0;padding:52px 48px;border-radius:3px;box-shadow:12px 12px 0 -4px rgba(139,110,64,.2),0 10px 30px rgba(139,110,64,.15);transform:rotate(.8deg);margin-left:-10px}
.auth-split.auth-tpl-paper-folded .auth-tabs-wrap{background:#f3ece0;border:1px solid rgba(92,69,32,.15);padding:3px}
.auth-split.auth-tpl-paper-folded .auth-tabs-wrap .auth-tab{color:#6b5530;font-family:Georgia,'Times New Roman',serif;font-weight:600}
.auth-split.auth-tpl-paper-folded .auth-tabs-wrap .auth-tab.active{background:#5c4520;color:#f3ece0;box-shadow:none}
.auth-split.auth-tpl-paper-folded .form-label{color:#2e2516;font-family:Georgia,'Times New Roman',serif;font-size:13px;font-weight:600}
.auth-split.auth-tpl-paper-folded .form-input{background:#f3ece0;border:1px solid rgba(92,69,32,.2);border-radius:3px;color:#2e2516;font-family:Georgia,'Times New Roman',serif;padding:13px 16px 13px 40px}
.auth-split.auth-tpl-paper-folded .form-input:focus{border-color:#5c4520;box-shadow:0 0 0 2px rgba(92,69,32,.1)}
.auth-split.auth-tpl-paper-folded .form-input::placeholder{color:#a08258}
.auth-split.auth-tpl-paper-folded .input-ic{color:#8b6e40}
.auth-split.auth-tpl-paper-folded .btn-auth{background:#2e2516;color:#f3ece0;border-radius:3px;font-family:Georgia,'Times New Roman',serif;font-weight:700;letter-spacing:1px;box-shadow:4px 4px 0 -1px rgba(139,110,64,.4)}
.auth-split.auth-tpl-paper-folded .btn-auth:hover{background:#5c4520;transform:translate(-1px,-1px);box-shadow:5px 5px 0 -1px rgba(139,110,64,.5)}
.auth-split.auth-tpl-paper-folded .social-btn{background:#f3ece0;border:1px solid rgba(92,69,32,.2);color:#2e2516;border-radius:3px}
.auth-split.auth-tpl-paper-folded .social-btn:hover{border-color:#5c4520;background:#f8f1e4}
.auth-split.auth-tpl-paper-folded .auth-divider{color:#8b6e40;font-style:italic}
.auth-split.auth-tpl-paper-folded .auth-divider::before,
.auth-split.auth-tpl-paper-folded .auth-divider::after{background:rgba(92,69,32,.25)}
.auth-split.auth-tpl-paper-folded .at-card{border-color:rgba(92,69,32,.2) !important;background:#fffaf0;border-radius:3px}
.auth-split.auth-tpl-paper-folded .at-card.active{border-color:#5c4520 !important;background:#f3ece0 !important;box-shadow:2px 2px 0 rgba(139,110,64,.25)}

/* ========= 13) SPLIT-TRIPLE (3 kolonlu: branding | form | tanıtım) ========= */
.auth-split.auth-tpl-split-triple{background:#fafbff;display:flex;min-height:100vh}
.auth-split.auth-tpl-split-triple .auth-left{flex:0 0 320px;max-width:360px;padding:60px 32px;background:linear-gradient(180deg,#0f0f1e,#1a1040)}
.auth-split.auth-tpl-split-triple .auth-left-content{max-width:100%;padding:0}
.auth-split.auth-tpl-split-triple .auth-brand h1{font-size:24px;line-height:1.15}
.auth-split.auth-tpl-split-triple .auth-brand p{font-size:13px}
.auth-split.auth-tpl-split-triple .auth-features{grid-template-columns:1fr !important;gap:10px !important}
.auth-split.auth-tpl-split-triple .auth-feature{padding:10px 12px}
.auth-split.auth-tpl-split-triple .auth-feature p{-webkit-line-clamp:2;font-size:11px}
.auth-split.auth-tpl-split-triple .auth-right{flex:1 1 auto;width:auto;min-width:0;padding:80px 56px;position:relative}
.auth-split.auth-tpl-split-triple .auth-right-content{max-width:460px;margin:0 auto}
/* 3. kolon: testimonial/tanıtım — pseudo-element ile üret */
.auth-split.auth-tpl-split-triple::after{content:'';flex:0 0 340px;background:linear-gradient(160deg,rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.08),rgba(var(--s-r,255),var(--s-g,101),var(--s-b,132),.08));border-left:1px solid rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.12);background-image:
  radial-gradient(circle at 50% 30%,rgba(var(--p-r,108),var(--p-g,99),var(--p-b,255),.2) 0,transparent 45%),
  radial-gradient(circle at 50% 70%,rgba(var(--s-r,255),var(--s-g,101),var(--s-b,132),.18) 0,transparent 50%),
  linear-gradient(180deg,#f5f7ff,#faf0f7);position:relative}

/* Responsive yeni şablonlar */
@media (max-width:1100px){
  .auth-split.auth-tpl-neon-grid .auth-left{flex:0 0 360px;padding:40px 32px}
  .auth-split.auth-tpl-neon-grid .auth-right{flex:0 0 460px;padding:40px 36px}
  .auth-split.auth-tpl-paper-folded .auth-left,
  .auth-split.auth-tpl-paper-folded .auth-right{transform:none;margin-left:0}
  .auth-split.auth-tpl-split-triple::after{flex:0 0 240px}
  .auth-split.auth-tpl-split-triple .auth-right{padding:60px 40px}
}
@media (max-width:900px){
  .auth-split.auth-tpl-neon-grid,
  .auth-split.auth-tpl-paper-folded{flex-direction:column}
  .auth-split.auth-tpl-neon-grid .auth-left,
  .auth-split.auth-tpl-neon-grid .auth-right,
  .auth-split.auth-tpl-paper-folded .auth-left,
  .auth-split.auth-tpl-paper-folded .auth-right{flex:0 0 auto;max-width:100%;width:100%}
  .auth-split.auth-tpl-split-triple::after{display:none}
  .auth-split.auth-tpl-split-triple{flex-direction:column}
  .auth-split.auth-tpl-split-triple .auth-left,
  .auth-split.auth-tpl-split-triple .auth-right{flex:0 0 auto;max-width:100%;width:100%}
  .auth-split.auth-tpl-split-triple .auth-right{padding:40px 24px}
}

/* Dark mode yeni şablonlar */
[data-theme="dark"] .auth-split.auth-tpl-paper-folded{background:#1a1612}
[data-theme="dark"] .auth-split.auth-tpl-paper-folded .auth-left{background:#2a2218}
[data-theme="dark"] .auth-split.auth-tpl-paper-folded .auth-right{background:#1e1a14;color:#e8dfcc}
[data-theme="dark"] .auth-split.auth-tpl-paper-folded .form-label,
[data-theme="dark"] .auth-split.auth-tpl-paper-folded .auth-brand h1{color:#e8dfcc}
[data-theme="dark"] .auth-split.auth-tpl-paper-folded .form-input{background:#2a2218;color:#e8dfcc;border-color:rgba(232,223,204,.2)}
[data-theme="dark"] .auth-split.auth-tpl-split-triple{background:#0b1120}
[data-theme="dark"] .auth-split.auth-tpl-split-triple::after{background:linear-gradient(180deg,#1e293b,#0f172a);border-color:rgba(255,255,255,.08)}
