:root {
  --mwa-red: #b11226;
  --mwa-red-dark: #8e0f1f;
  --bg: #f7f7f7;
  --card: #ffffff;
  --border: #e0e0e0;
  --text: #1f1f1f;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* 🔴 Top Header */
header {
    background: var(--mwa-red);
    color: white;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

header img {
    height: 42px;
    width: auto;
}

header h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.4px;
}

header span {
    font-size: 13px;
    opacity: 0.9;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

.reset-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.reset-card {
  max-width: 420px;
  width: 100%;
  padding: 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

h2 {
  color: var(--mwa-red);
  border-left: 5px solid var(--mwa-red);
  padding-left: 10px;
  font-size: 18px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 16px;
}

label {
  font-size: 12px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #c9c9c9;
  font-size: 13.5px;
}

.password-status {
  font-size: 13px;
  margin-bottom: 14px;
}

.password-status.ok {
  color: #2e7d32;
}

.password-status.error {
  color: #c62828;
}

.hidden {
  display: none;
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

button {
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--mwa-red);
  color: white;
}

.btn-secondary {
  background: #777;
  color: white;
}

footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin: 30px 0 10px;
}
