/* ─────────────────────────────────────────────
   login.css — Halaman Login FAMOUS CM Dashboard
   ───────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0f1a;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #e2e8f0;
}

.login-box {
  background: #111827;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 380px;
  border: 1px solid #1e2d45;
}

.login-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.login-title span {
  color: #3b82f6;
}

.login-subtitle {
  font-size: 13px;
  color: #64748b;
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #94a3b8;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #1e2d45;
  background: #1a2234;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.form-group input:focus {
  border-color: #3b82f6;
}

.btn-login {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: #3b82f6;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-login:hover {
  background: #2563eb;
}

.login-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  line-height: 1.5;
}
