
/* ===== FILE: assets/css/login.css ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.login-body {
  height: 100vh;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-wrapper {
  width: 100%;
  max-width: 380px;
}

.login-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.login-box h1 {
  text-align: center;
  font-size: 28px;
  letter-spacing: 2px;
}

.subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 25px;
  font-size: 14px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #334155;
}

.form-group input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

.form-group input:focus {
  outline: none;
  border-color: #2563eb;
}

.btn-login {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-login:hover {
  background: #1d4ed8;
}

.footer-text {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  color: #94a3b8;
}

