/* ==========================================================================
   LOGIN PAGE STYLING
   ========================================================================== */

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #d65f1a 0%, #8b3a0e 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.card {
  background: white;
  border-radius: 18px;
  padding: 36px 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
}
.logo {
  width: 96px; height: 96px; border-radius: 50%;
  background: #fff3eb; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px;
}
h1 {
  margin: 0 0 4px;
  color: #d65f1a;
  font-size: 22px;
  letter-spacing: 1px;
}
.subtitle { color: #888; font-size: 14px; margin-bottom: 28px; }
.admin-badge {
  display: inline-block; background: #fff3eb; color: #d65f1a;
  padding: 4px 12px; border-radius: 20px; font-size: 12px;
  font-weight: bold; margin-bottom: 20px;
}
input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}
input[type="password"]:focus { border-color: #d65f1a; }
button {
  width: 100%;
  background: #d65f1a;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 14px;
  transition: background 0.2s;
}
button:hover { background: #b54e14; }
button:active { transform: scale(0.98); }
.error {
  background: #ffe5e5;
  color: #b33;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 14px;
}
.hint {
  color: #aaa;
  font-size: 12px;
  margin-top: 18px;
}
