/* Kayit / giris — Fiat ticari hero (Ducato arka plan) */
.auth-hero-page {
  position: relative;
  min-height: calc(100vh - 120px);
  margin: 0 -20px;
  overflow: hidden;
}

.auth-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 72% center;
  background-color: #0f172a;
}

.auth-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 35, 75, 0.94) 0%,
    rgba(0, 35, 75, 0.82) 38%,
    rgba(15, 23, 42, 0.55) 62%,
    rgba(15, 23, 42, 0.25) 100%
  );
}

.auth-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 440px);
  gap: 40px;
  align-items: center;
  padding: 56px 20px 72px;
  min-height: calc(100vh - 120px);
}

.auth-hero-copy {
  color: #fff;
  max-width: 640px;
}

.auth-hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 12px;
}

.auth-hero-copy h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.auth-hero-lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
}

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

.auth-hero-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.auth-hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7dd3fc;
  font-weight: 700;
}

.auth-hero-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.auth-hero-card h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.auth-hero-card .btn-primary {
  background: var(--auth-brand, #003d7a);
  border-color: var(--auth-brand, #003d7a);
}

.auth-hero-card .btn-primary:hover {
  filter: brightness(1.08);
}

@media (max-width: 900px) {
  .auth-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 32px;
    min-height: auto;
  }

  .auth-hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  .auth-hero-list {
    text-align: left;
  }

  .auth-hero-bg {
    background-position: center 30%;
  }
}
