/* Romantik fontları dahil edelim */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;600&display=swap');

/* Genel reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; /* Gövde metni için temiz, yuvarlak bir font */
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Romantik bir gün batımı gradyanı */
  background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
  background: linear-gradient(to top, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.login-container {
  background: rgba(255, 255, 255, 0.9); /* Biraz daha şeffaf */
  padding: 45px 35px;
  border-radius: 30px; /* Daha yuvarlak köşeler */
  /* Pembe tonlu yumuşak gölge */
  box-shadow: 0 15px 35px rgba(255, 105, 135, 0.3);
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.8); /* Buzlu cam etkisi için sınır */
}

.login-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 105, 135, 0.5);
}

.login-container h2 {
  margin-bottom: 25px;
  font-size: 3rem; /* Başlığı büyüttük */
  font-family: 'Dancing Script', cursive; /* Romantik el yazısı fontu */
  background: -webkit-linear-gradient(#ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Yazı rengini gradyan yaptık */
  text-shadow: none;
}

.login-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-container input {
  padding: 15px 20px;
  border-radius: 50px; /* Tam oval inputlar */
  border: 2px solid #ffe3e3;
  background-color: #fff0f3;
  font-size: 1rem;
  color: #ff5e78;
  outline: none;
  transition: 0.3s;
}

.login-container input::placeholder {
  color: #ffb7b2;
}

.login-container input:focus {
  border-color: #ff758c;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(255, 117, 140, 0.3);
}

.login-container button {
  padding: 15px;
  border: none;
  border-radius: 50px; /* Tam oval buton */
  /* Tutkulu kırmızı/pembe gradyan */
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 65, 108, 0.4);
  letter-spacing: 1px;
}

.login-container button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 65, 108, 0.6);
  animation: heartbeat 1.5s infinite; /* Mouse üzerine gelince kalp gibi atsın */
}

/* Kalp atışı animasyonu */
@keyframes heartbeat {
  0% { transform: scale(1.05); }
  5% { transform: scale(1.1); }
  10% { transform: scale(1.05); }
  15% { transform: scale(1.1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 450px) {
  .login-container {
    padding: 30px 20px;
  }

  .login-container h2 {
    font-size: 2.5rem;
  }
}