/* =============================================================
 * LIORA BABY — giris.css
 * Müşteri giriş sayfasına özel stiller
 * ============================================================= */

/* ─── Sayfa Wrapper ──────────────────────────────────────────── */
.lb-giris-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--lb-cream) 0%, var(--lb-cream-2) 100%);
}

/* ─── Giriş Kartı ────────────────────────────────────────────── */
.lb-giris-card {
  background: #fff;
  border: 1px solid rgba(107,76,59,0.1);
  border-radius: 22px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 8px 40px rgba(107,76,59,0.1);
  width: 100%;
}

/* ─── Marka Alanı ────────────────────────────────────────────── */
.lb-giris-brand {
  text-align: center;
  margin-bottom: 1.75rem;
}
.lb-giris-brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 0.6rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(107,76,59,0.1);
}
.lb-giris-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lb-brown);
  letter-spacing: -0.01em;
  display: block;
}
.lb-giris-brand-sub {
  font-size: 0.76rem;
  color: #9a7e74;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}

/* ─── Başlık & Açıklama ──────────────────────────────────────── */
.lb-giris-divider {
  height: 1px;
  background: rgba(107,76,59,0.1);
  margin: 1.5rem 0;
}
.lb-giris-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lb-text);
  text-align: center;
  margin-bottom: 0.35rem;
}
.lb-giris-sub {
  font-size: 0.83rem;
  color: #9a7e74;
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ─── Form Alanları ──────────────────────────────────────────── */
.lb-giris-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7a5c4e;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.35rem;
}
.lb-giris-input {
  width: 100%;
  background: var(--lb-cream);
  border: 1.5px solid rgba(107,76,59,0.16);
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--lb-text);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.lb-giris-input:focus {
  border-color: var(--lb-rose);
  box-shadow: 0 0 0 3px rgba(201,168,154,0.2);
  background: #fff;
}
.lb-giris-input::placeholder {
  color: #c5aaa0;
}

/* ─── Beni Hatırla + Şifremi Unuttum ────────────────────────── */
.lb-giris-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.85rem 0 1.25rem;
  font-size: 0.83rem;
  font-family: 'DM Sans', sans-serif;
}
.lb-giris-remember {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #6b5248;
  cursor: pointer;
  user-select: none;
}
.lb-giris-remember input {
  accent-color: var(--lb-brown);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.lb-giris-forgot {
  color: var(--lb-rose);
  text-decoration: none;
  font-weight: 500;
}
.lb-giris-forgot:hover {
  color: var(--lb-brown);
  text-decoration: underline;
}

/* ─── Giriş Butonu ───────────────────────────────────────────── */
.lb-btn-giris {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--lb-brown);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.lb-btn-giris:hover {
  background: #573b2c;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(107,76,59,0.26);
}

/* ─── Kayıt Ol Linki ─────────────────────────────────────────── */
.lb-giris-kayit {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.84rem;
  color: #9a7e74;
  font-family: 'DM Sans', sans-serif;
}
.lb-giris-kayit a {
  color: var(--lb-brown);
  font-weight: 600;
  text-decoration: none;
}
.lb-giris-kayit a:hover {
  text-decoration: underline;
}

/* ─── Avantaj Kutuları ───────────────────────────────────────── */
.lb-giris-avantaj {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.lb-avantaj-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid rgba(107,76,59,0.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  transition: box-shadow 0.2s;
}
.lb-avantaj-item:hover {
  box-shadow: 0 3px 12px rgba(107,76,59,0.08);
}
.lb-avantaj-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--lb-rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lb-brown);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.lb-avantaj-text strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lb-text);
  display: block;
  margin-bottom: 0.1rem;
}
.lb-avantaj-text span {
  font-size: 0.79rem;
  color: #9a7e74;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.45;
}

/* ─── Mobil ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .lb-giris-avantaj {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .lb-avantaj-item {
    flex: 1 1 200px;
  }
  .lb-giris-page {
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .lb-giris-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }
}
