html {
  background: #011635;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Main logo text */
#hd {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-style: italic;
  text-align: center;
}

/* Tagline line (DE JUISTE KOERS...) */
#title {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
  font-size: 0.9em;
  text-align: center;
}

/* Subtitle */
#subtitle {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  opacity: 0.85;
  text-align: center;
}

.form-field {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: #011635;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field:focus {
  border-color: #02D1E3;
  box-shadow: 0 0 0 3px rgba(2, 209, 227, 0.25);
  background: #ffffff;
}

.form-field::placeholder {
  color: rgba(1, 22, 53, 0.55);
}
