
body {
  background-color: #0a1a2f;
  color: white;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
}

header h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

header .highlight {
  color: #8ee000;
  font-weight: bold;
  font-size: 2rem;
}

.subheadline {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #132c4b;
  border-radius: 8px;
}

.step {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.step.active {
  display: flex;
}

.step label {
  font-size: 1.125rem;
  font-weight: bold;
}

button {
  background-color: #8ee000;
  color: #0a1a2f;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
}

input, select {
  padding: 1rem;
  border-radius: 6px;
  border: none;
  width: 100%; max-width: 100%; box-sizing: border-box;
  font-size: 1rem;
}

.checkbox-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

label.consent {
  font-size: 0.85rem;
  color: #ccc;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  text-align: left;
  flex-wrap: nowrap;
}

label.consent input[type="checkbox"] {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

input.input-error {
  border: 2px solid red;
}

.settlements {
  background-color: #ffffff;
  color: #0a1a2f;
  text-align: center;
  padding: 1.5rem 1rem;
}

.settlements h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.settlements .highlight-red {
  color: #e52d2d;
  font-style: italic;
  font-weight: bold;
}

.settlement-box {
  border: 1px solid #0a1a2f;
  margin: 1rem auto;
  max-width: 500px;
  padding: 1.25rem;
  border-radius: 4px;
}

.settlement-box .amount {
  color: #8ee000;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.settlement-box .type {
  font-style: italic;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.8rem;
  padding: 2rem;
  background-color: #0a1a2f;
  color: #ccc;
  text-align: center;
}
