body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ---------- LOGIN PAGE ---------- */

.login-page {
  background: #0f172a;
  color: white;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.card {
  background: #111827;
  padding: 30px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.card h2 {
  margin-bottom: 20px;
  text-align: center;
}

input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  outline: none;
  background: #1f2937;
  color: white;
}

button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

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

.btn-danger {
  background: #ef4444;
  color: white;
}

.btn-danger:hover {
  background: #dc2626;
}

#msg {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: #f87171;
}

/* ---------- DASHBOARD ---------- */

.dashboard-page {
  background: #0b1220;
  color: white;
  min-height: 100vh;
}

.navbar {
  background: #111827;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container {
  padding: 30px;
}

.card-box {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.title {
  font-size: 20px;
  font-weight: bold;
}