/* ==========================================================================
   GİRİŞ SAYFALARI - YERLEŞİM STİLLERİ
   ========================================================================== */

/* === Login Container Ortak Stil === */
.login-container {
  background: white;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* === Login Page Body Ortak Stil === */
body.login-page {
  /* temel.css'ten gelen font-family ve background-color kullanılacak. */
  /* Sadece ortalama için gerekli stiller burada kalıyor. */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* === Login Form Input Grup Ortak Stil === */
.input-group {
  margin-bottom: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.input-group input[type="text"],
.input-group input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
  border-color: #e62f2f;
  box-shadow: 0 0 4px rgba(230, 47, 47, 0.4);
}

.input-group input[type="checkbox"] {
  transform: scale(1.2);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  margin-right: 10px;
}

/* === Checkbox Grup Ortak Stil === */
.input-group.checkbox-group {
  display: block;
  align-items: center;
}

.input-group.checkbox-group label {
  display: inline-block;
  margin: 0;
  line-height: 1.2;
}

/* Chrome Autofill Arka Plan Rengi Değiştirme */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffe6e6 inset !important;
  -webkit-text-fill-color: #333 !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Ortak header'ın giriş kutusu içindeki görünümünü düzenler */
.login-container .header {
  padding: 0;
  border-bottom: none;
  margin-bottom: 20px;
}

.login-container .header img {
  margin-top: 0;
}

