/* Exclion Panel — giriş / kayıt (Default.aspx); font linki sayfa head içinde */

:root {
  --auth-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --auth-bg-1: #0c1222;
  --auth-bg-2: #1a1040;
  --auth-accent: #818cf8;
  --auth-accent-2: #c084fc;
  --auth-accent-dim: rgba(129, 140, 248, 0.35);
  --auth-text: #0f172a;
  --auth-muted: #64748b;
  --auth-border: rgba(15, 23, 42, 0.08);
  --auth-input-bg: #f8fafc;
  --auth-radius: 1.35rem;
  --auth-radius-sm: 0.75rem;
  --auth-brand-fg: rgba(248, 250, 252, 0.92);
  --auth-brand-muted: rgba(203, 213, 225, 0.85);
}

.auth-page {
  font-family: var(--auth-font);
  min-height: 100vh;
  position: relative;
  background: var(--auth-bg-1);
  color: var(--auth-text);
}

.auth-page .page-wrapper {
  background: transparent !important;
}

.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(155deg, #0a0f1c 0%, #1e1b4b 42%, #312e81 100%);
}

.auth-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 20%, transparent 72%);
}

.auth-bg::before,
.auth-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.auth-bg::before {
  width: min(92vw, 560px);
  height: min(92vw, 560px);
  background: #4338ca;
  top: -18%;
  right: -12%;
  animation: auth-orb-float 18s ease-in-out infinite;
}

.auth-bg::after {
  width: min(75vw, 440px);
  height: min(75vw, 440px);
  background: #7c3aed;
  bottom: -15%;
  left: -8%;
  animation: auth-orb-float 22s ease-in-out infinite reverse;
}

@keyframes auth-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-3%, 4%) scale(1.05); }
}

@keyframes auth-card-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes auth-brand-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-bg::before,
  .auth-bg::after {
    animation: none;
  }

  .auth-card,
  .auth-brand__content {
    animation: none !important;
  }
}

.auth-layout {
  position: relative;
  z-index: 1;
}

.auth-split {
  min-height: 100vh;
}

/* —— Marka sütunu (lg+) —— */
.auth-brand {
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.4) 0%,
    rgba(15, 23, 42, 0.75) 100%
  );
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.auth-brand__content {
  position: relative;
  z-index: 2;
  max-width: 26rem;
  animation: auth-brand-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-brand__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--auth-accent);
  margin: 0 0 1rem;
}

.auth-brand__title {
  font-size: clamp(1.65rem, 2.5vw, 2.125rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--auth-brand-fg);
  margin: 0 0 1rem;
}

.auth-brand__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--auth-brand-muted);
  margin: 0 0 1.75rem;
}

.auth-brand__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-brand__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.92);
}

.auth-brand__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(129, 140, 248, 0.15);
  color: var(--auth-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-brand__deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.auth-brand__ring {
  position: absolute;
  border: 1px solid rgba(129, 140, 248, 0.22);
  border-radius: 50%;
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  right: -8%;
  bottom: 12%;
  animation: auth-orb-float 25s ease-in-out infinite;
}

.auth-brand__ring--2 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: -18%;
  bottom: -8%;
  border-color: rgba(192, 132, 252, 0.12);
  animation-duration: 30s;
}

/* Form sütunu */
.auth-form-col {
  position: relative;
}

.auth-shell {
  width: 100%;
  max-width: 420px;
}

.auth-logo-wrap {
  padding: 0.5rem 0.75rem 1.25rem;
  margin: -0.25rem auto 0.25rem;
  border-radius: var(--auth-radius-sm);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9) 0%, transparent 100%);
}

.auth-card {
  border-radius: var(--auth-radius) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.05),
    0 28px 56px -16px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset !important;
  animation: auth-card-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.auth-logo {
  display: block;
  margin: 0 auto;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.auth-logo-wrap a:hover .auth-logo {
  transform: scale(1.02);
}

.auth-heading {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--auth-text);
  margin: 0;
  text-align: center;
}

.auth-lead {
  font-size: 0.9375rem;
  color: var(--auth-muted);
  text-align: center;
  margin: 0.4rem 0 0;
  line-height: 1.55;
}

.auth-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--auth-border), transparent);
  margin: 1.35rem 0 1.5rem;
}

.auth-card .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.auth-card .form-control {
  border-radius: var(--auth-radius-sm);
  border: 1px solid var(--auth-border);
  background: var(--auth-input-bg);
  padding: 0.65rem 0.95rem;
  font-size: 0.9375rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.auth-card .form-control:hover {
  border-color: rgba(129, 140, 248, 0.4);
}

.auth-card .form-control:focus {
  border-color: var(--auth-accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--auth-accent-dim);
  outline: none;
}

.auth-card .form-check-input:checked {
  background-color: #6366f1;
  border-color: #6366f1;
}

.auth-card .form-check-label,
.auth-card .form-check-label a {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
}

.auth-card .form-check-label a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.auth-card .form-check-label a:hover {
  text-decoration: underline;
}

.auth-card .btn-primary,
.auth-card input[type="submit"].btn-primary {
  border: none;
  border-radius: var(--auth-radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 0.78rem 1.25rem;
  background: linear-gradient(135deg, #6366f1 0%, #9333ea 55%, #a855f7 100%) !important;
  box-shadow: 0 4px 16px -4px rgba(99, 102, 241, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.auth-card .btn-primary:hover,
.auth-card input[type="submit"].btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 8px 24px -6px rgba(99, 102, 241, 0.55);
  transform: translateY(-2px);
}

.auth-card .btn-primary:active,
.auth-card input[type="submit"].btn-primary:active {
  transform: translateY(0);
}

.auth-card .text-primary,
.auth-card a.text-primary {
  color: #4f46e5 !important;
  font-weight: 600;
  text-decoration: none;
}

.auth-card a.text-primary:hover {
  text-decoration: underline;
}

.auth-footer-note {
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.78);
  text-align: center;
  margin-top: 1.75rem;
}

.auth-footer-note a {
  opacity: 0.92;
  transition: opacity 0.18s ease;
}

.auth-footer-note a:hover {
  opacity: 1;
}

.auth-footer-note img {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.auth-page .preloader {
  z-index: 9999;
}

@media (max-width: 991.98px) {
  .auth-form-col {
    min-height: 100vh;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .auth-card .card-body {
    padding: 1.5rem !important;
  }

  .auth-heading {
    font-size: 1.35rem;
  }

  .auth-logo-wrap {
    padding-bottom: 1rem;
  }
}
