/* —— Giriş sayfası (index) —— */
.login-body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
}

.login-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
}

@media (max-width: 900px) {
  .login-split { grid-template-columns: 1fr; }
  .login-hero { display: none; }
  .login-panel { min-height: 100vh; }
}

.login-hero {
  background:
    linear-gradient(145deg, rgba(99, 102, 241, 0.25) 0%, transparent 55%),
    linear-gradient(220deg, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    #0a0f1a;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 48px 56px;
}

.login-hero-inner { max-width: 480px; }

.logo-mark.lg {
  width: 56px;
  height: 56px;
  font-size: 26px;
  border-radius: 14px;
  margin-bottom: 28px;
}

.login-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.login-hero .lead {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
}

.feature-list .fi {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(129, 140, 248, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-foot {
  font-size: 12px;
  color: var(--text-dim);
}

.login-panel {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.login-panel-inner {
  width: 100%;
  max-width: 380px;
}

.login-kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.login-panel-inner h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
}

.login-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.login-form .btn-primary {
  margin-top: 8px;
}

.login-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.reg-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 12px 0 4px;
  cursor: pointer;
}

.reg-kvkk input {
  margin-top: 3px;
  flex-shrink: 0;
}

.reg-kvkk a {
  color: var(--blue);
}

.field-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 6px;
  line-height: 1.4;
}

.pass-rules {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}

.pass-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  margin: 5px 0;
  transition: color 0.15s;
}

.pass-rules li::before {
  content: "○";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  font-size: 11px;
  flex-shrink: 0;
  color: #475569;
}

.pass-rules li.ok {
  color: #34d399;
}

.pass-rules li.ok::before {
  content: "✓";
  color: #34d399;
  font-weight: 800;
}

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text-dim);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.login-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.5);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
