/* 🎨 HergünPazar - Giriş & Kayıt Ortak Stil Dosyası */

body {
  background-color: #f8f9fa;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* Ana kart (form kutusu) */
.auth-card {
  max-width: 450px;
  margin: 80px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
}

/* Başlık */
.auth-card h4 {
  color: #ff6600;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

/* Buton */
.btn-orange {
  background-color: #ff6600;
  border: none;
  color: white;
  font-weight: 600;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.btn-orange:hover {
  background-color: #e55a00;
}

/* Linkler */
.auth-link {
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
}
.auth-link:hover {
  text-decoration: underline;
}

/* Uyarılar */
.alert {
  border-radius: 6px;
}

/* Form elemanları */
.form-control {
  border-radius: 6px;
  height: 45px;
}
