/* ================= ÜYE OL SAYFASI ================= */
.uye-ol-sayfa {
  padding-bottom: 3rem;
}

/* Ana kart: sol tanıtım + sağ form */
.uye-ol-kart {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ---------- SOL: TANITIM ---------- */
.uye-ol-tanitim {
  background:#1a2c4d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
}

.tanitim-icerik {
  max-width: 320px;
}

.tanitim-ikon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0.9;
}

.tanitim-baslik {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #fffff;
}

.tanitim-metin {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.tanitim-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tanitim-liste li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  opacity: 0.95;
}

.tanitim-liste li i {
  font-size: 1.1rem;
  opacity: 0.85;
  flex-shrink: 0;
}

/* ---------- SAĞ: FORM ---------- */
.uye-ol-form-alani {
  padding: 2.5rem;
}

.form-ust-baslik {
  font-size: 1.35rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e9ecef;
}

/* Form grid: 2 kolon */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grup {
  display: flex;
  flex-direction: column;
}

.form-grup.span-2 {
  grid-column: span 2;
}

.form-grup label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.4rem;
}

.form-grup .zorunlu {
  color: #dc3545;
  margin-left: 2px;
}

.form-grup input[type="text"],
.form-grup input[type="email"],
.form-grup input[type="password"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.5;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-grup input:focus {
  outline: 0;
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, .18);
}

.form-yardim {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 0.3rem;
}

/* CAPTCHA */
.captcha-satir {
  margin-top: 0.5rem;
}

.captcha-alani {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.captcha-alani img {
  border-radius: 8px;
  border: 1px solid #ced4da;
  height: 50px;
  width: 150px;
  background: #f8f9fa;
}

.captcha-yenile {
  background: none;
  border: none;
  color: #0d6efd;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0.25rem;
  transition: transform .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.captcha-yenile:hover {
  transform: rotate(180deg);
}

.captcha-girdi {
  flex: 1;
  min-width: 140px;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Buton */
.btn-kayit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  background: #1a2c4d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
  margin-top: 0.5rem;
}

.btn-kayit:hover {
  background: #0b5ed7;
}

.btn-kayit:active {
  transform: scale(0.99);
}

/* ---------- MOBİL: Tek kolon ---------- */
@media (max-width: 768px) {
  .uye-ol-kart {
    grid-template-columns: 1fr;
  }

  .uye-ol-tanitim {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .tanitim-liste {
    align-items: center;
  }

  .uye-ol-form-alani {
    padding: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-grup.span-2 {
    grid-column: span 1;
  }

  .captcha-alani {
    gap: 0.5rem;
  }

  .captcha-girdi {
    width: 100%;
    margin-top: 0.25rem;
  }
}