/* BACKGROUND */
.login-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

/* WRAPPER */
.login-wrapper {
  width: 100%;
  padding: 20px;
}

/* CARD */
.login-card {
  max-width: 380px;
  margin: auto;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  text-align: center;
}

/* LOGO */
.login-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

/* PARK NAME */
.park-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

/* SUBTITLE */
.subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

/* INPUT GROUP */
.input-group {
  position: relative;
  margin-bottom: 14px;
}

/* INPUT */
.login-form input {
  width: 100%;
  height: 50px;
  padding: 0 14px 0 46px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f5f7f9;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.login-form input:focus {
  border-color: #2c5364;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44,83,100,0.1);
  outline: none;
}

/* LOGIN ICON */
.input-group .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

/* USER ICON */
.input-group .icon.user {
  border: 2px solid #555;
  border-radius: 50%;
}

.input-group .icon.user::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  border: 2px solid #555;
  border-top: none;
  border-radius: 0 0 10px 10px;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

/* LOCK ICON */
.input-group .icon.lock {
  border: 2px solid #555;
  border-radius: 4px;
}

.input-group .icon.lock::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 7px;
  border: 2px solid #555;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
/* BUTTON */
.login-form button {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2c5364, #1c2b36);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.login-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* FOOTER */
.login-footer {
  margin-top: 16px;
  font-size: 12px;
  color: #999;
}

/* BAŞLIK (PARK NAME vs) */
.login-card h1 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #222; /* 🔥 koyu yaptık */
  margin-top: 10px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

/* ALT YAZI */
.login-card .subtitle {
  text-align: center;
  font-size: 13px;
  color: #666; /* 🔥 daha görünür gri */
  margin-bottom: 18px;
}

/* INPUT TEXT DAHA NET */
.login-form input {
  color: #222;
  background: #f8f9fb; /* hafif gri */
}

/* PLACEHOLDER DAHA NET */
.login-form input::placeholder {
  color: #999;
}

/* BUTON DAHA PREMIUM */
.login-form button {
  background: linear-gradient(135deg, #2c5364, #1c3a47);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* CARD DAHA SOFT */
.login-card {
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ARKA PLAN YUMUŞATMA */
.login-body {
  background: linear-gradient(135deg, #1f3c4c, #2c5364);
}