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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.login-box {
  background: #020617;
  width: 340px;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

/* Title */
.login-box h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Inputs */
.login-box input {
  width: 100%;
  padding: 12px 14px;
  margin-top: 12px;
  border-radius: 8px;
  border: none;
  background: #1e293b;
  color: #ffffff;
  font-size: 14px;
}

.login-box input::placeholder {
  color: #94a3b8;
}

.login-box input:focus {
  outline: 2px solid #22c55e;
}

/* Button */
.login-box button {
  width: 100%;
  padding: 12px;
  margin-top: 22px;
  border: none;
  border-radius: 8px;
  background: #22c55e;
  color: #020617;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.login-box button:hover {
  background: #16a34a;
}

/* Error message */
#msg {
  margin-top: 15px;
  text-align: center;
  color: #f87171;
  font-size: 14px;
}

/* Small footer text */
.login-footer {
  margin-top: 25px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}
