/* Inlog-, uitnodigings- en welkomstpagina's — Parkstad-huisstijl.
   Dezelfde tokens als style.css, maar zelfstandig zodat deze pagina's niet de
   hele dashboardstijl hoeven te laden. */
:root {
  --green: #83bb26;
  --green-dark: #6a9a1e;
  --yellow: #dddc00;
  --light: #a7afd6;
  --lighter: #dbdeed;
  --dark-blue: #003a60;
  --blue: #0079b4;
  --white: #fff;
  --grijs: #f4f5f9;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 3px rgba(0, 58, 96, .12), 0 6px 18px rgba(0, 58, 96, .06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 32px 20px;
  background: var(--grijs);
  color: var(--dark-blue);
  font: 15px/1.5 "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

.kaart {
  width: 100%;
  max-width: 430px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* huisstijlbalk bovenaan de kaart */
.kaart::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0%, var(--dark-blue) 50%, var(--yellow) 100%);
}

.kaart-inhoud { padding: 26px 28px 30px; }

h1 { font-size: 1.3rem; margin: 0 0 4px; }

.sub { color: var(--blue); font-size: .9rem; margin: 0 0 22px; }

.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark-blue);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin: 14px 0 4px;
}

input {
  display: block;
  width: 100%;
  font: inherit;
  padding: 9px 11px;
  border: 1px solid var(--light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: inherit;
}

input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.hint { font-size: .8rem; color: var(--blue); margin-top: 5px; }

button {
  width: 100%;
  margin-top: 22px;
  padding: 11px 16px;
  font: inherit;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

button:hover:not(:disabled) { background: var(--green-dark); }
button:disabled { opacity: .6; cursor: progress; }

.melding {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  border-left: 3px solid;
}

.melding.fout { background: #fdf0f0; border-color: #c0392b; color: #8e2c21; }
.melding.info { background: var(--lighter); border-color: var(--blue); }

.melding[hidden] { display: none; }

.uitleg {
  background: var(--lighter);
  border-left: 3px solid var(--blue);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: .86rem;
  margin-bottom: 4px;
}

/* logostrip — zie style.css: de stippellijn loopt tot de bovenrand door */
.footer-logos { display: block; width: 320px; max-width: 100%; height: auto; }

@media (max-width: 480px) { .footer-logos { width: 240px; } }
