body.login-page {
  height: 100vh;
  background: radial-gradient(circle at top, #1e293b, #020617);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, sans-serif;
}

.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-card {
  background: #fff;
  width: 420px;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
  text-align: center;
}

.login-logo {
  height: 64px;
  margin-bottom: 10px;
}

.login-subtitle {
  color: #64748b;
  margin-bottom: 28px;
}

.login-card label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-top: 14px;
}

.login-card input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #fefec8;
}

.login-card button {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

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

.login-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.login-footer {
  margin-top: 20px;
  font-size: 13px;
  color: #94a3b8;
}