/* !KAYDOL */

.kayit-kapsayici {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.kayit-kutusu {
  background-color: rgba(20, 20, 20, 0.85);
  border: 2px solid #ffffff33;
  border-radius: 10px;
  padding: 20px 40px 30px;
  width: 320px;
  box-shadow:
    0 0 15px rgba(255, 255, 255, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

/* RSI tarzı üst bölüm: amblem + başlık + Google girişi en üstte */
.kayit-amblem {
  display: block;
  width: 84px;
  margin: 4px auto 2px;
  /* Üst bardaki logoyla aynı mavi ton */
  filter: hue-rotate(85deg) saturate(1.15);
}

.kayit-baslik {
  margin: 0 0 16px;
  text-align: center;
  color: #eaf6ff;
  font-size: 24px;
  letter-spacing: 1px;
}

.sekmeler {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.sekme-buton {
  background: none;
  border: none;
  color: #a5a9b4;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 15px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.sekme-buton.aktif {
  color: white;
  border-bottom: 2px solid #66c0f4;
}

.kayit-formu {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kayit-formu label {
  text-align: left;
  font-size: 14px;
  color: #a5a9b4;
}

.kayit-formu input,
.kayit-formu select {
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: white;
}

/* Tarih seçicinin takvim simgesi koyu temada görünür kalsın */
.kayit-formu input[type="date"] {
  color-scheme: dark;
}

.form-ipucu {
  margin: -6px 0 0;
  font-size: 12px;
  color: #7f8798;
  text-align: left;
}

.kayit-formu button {
  margin-top: 15px;
  padding: 10px;
  background-color: #1b2838;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.kayit-formu button:hover {
  background-color: #66c0f4;
}

.gizli {
  display: none;
}

/* Destek formunun mesaj kutusu, girdilerle aynı görünümde */
.kayit-formu textarea {
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: white;
  font-family: inherit;
  resize: vertical;
}

/* Giriş formunun altındaki "Şifremi unuttum" bağlantısı */
.sifre-unuttum-link {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #9fd8ff;
  text-decoration: none;
}

.sifre-unuttum-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Şifre sıfırlama sayfasındaki "giriş sayfasına dön" bağlantısı */
.sifre-geri-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #9fd8ff;
  text-decoration: none;
}

.sifre-geri-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* !HAZIRLIK ŞERİDİ (Geliştirici Ol sayfası — program açılınca sil) */
.hazirlik-serit {
  margin-bottom: 18px;
  padding: 14px 16px;
  background-color: rgba(197, 138, 27, 0.16);
  border: 1px solid rgba(255, 193, 68, 0.55);
  border-left: 4px solid #ffc144;
  border-radius: 8px;
  text-align: left;
}

.hazirlik-baslik {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #ffd479;
}

.hazirlik-metin {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #f0e2c4;
}

/* !PROFİL SAYFASI */
.profil-avatar-alani {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.profil-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 189, 255, 0.5);
  background-color: #1a1a1a;
}

.profil-kimlik {
  text-align: left;
}

.profil-ad {
  font-size: 18px;
  font-weight: bold;
  color: #eaf6ff;
}

.profil-email {
  font-size: 13px;
  color: #a5a9b4;
  margin-top: 2px;
}

.profil-tarih {
  font-size: 12px;
  color: #7f8798;
  margin-top: 4px;
}

/* Dosya seçme: gerçek input gizlidir, bu etiket buton gibi görünür
   (tarayıcının çirkin "dosya seç" kutusu yerine site stili) */
.dosya-sec-buton {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: #1b2838;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.dosya-sec-buton:hover {
  background-color: #66c0f4;
}

/* Dar ekranlar (telefon) */
@media (max-width: 760px) {
  .kayit-kapsayici {
    margin-top: 30px;
    padding: 0 16px;
  }

  .kayit-kutusu {
    width: 100%;
    max-width: 340px;
    padding: 16px 20px 24px;
  }
}

.form-mesaji {
  margin: 0;
  min-height: 18px;
  font-size: 14px;
  text-align: left;
}

/* Geliştirici Ol formu: açıklama ve sözleşme onay satırı */
.form-aciklama {
  color: #a5a9b4;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  text-align: left;
}

.onay-satiri {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #a5a9b4;
  text-align: left;
}

.onay-satiri input {
  margin-top: 3px;
}

.form-mesaji.hata {
  color: #ff6b6b;
}

.form-mesaji.basari {
  color: #00d1ff;
}

/* "veya" yazısının iki yanına ince çizgi çeker */
.ayirici {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #a5a9b4;
  font-size: 13px;
}

.ayirici::before,
.ayirici::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #444;
}

#googleGirisAlani {
  display: flex;
  justify-content: center;
  min-height: 40px;
}

.google-uyari {
  color: #a5a9b4;
  font-size: 13px;
  margin: 0;
}
