body.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1f2937 42%, #334155 100%);
}

.login-card {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e6e9ef;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.login-header {
  background: linear-gradient(180deg, #f8ce25 0%, #f4c400 100%);
  padding: 20px;
  color: #111827;
}

.login-header h1 {
  margin: 0;
  font-size: 22px;
}

.login-header p {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 800;
}

#loginForm {
  padding: 20px;
  background: #f7f8fb;
  display: grid;
  gap: 12px;
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.remember input {
  width: auto;
}

.error {
  min-height: 18px;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.actions a {
  color: #1f2937;
  font-size: 13px;
  text-decoration: none;
  font-weight: 800;
}

.actions a:hover {
  text-decoration: underline;
}
