:root {
  --brand: #1c2d59;
  --accent: #f27b21;
  --ink: #333333;
  --muted: #8c96a0;
  --surface: #ffffff;
  --step-bg: #e9edf3;
  --ok: #16a34a;
}

/* Watermark */
.dignity-watermark {
  position: absolute;
  inset: auto 0 0 0;
  margin: auto;
  opacity: 0.06;
  max-width: 800px;
  width: 85%;
  pointer-events: none;
  user-select: none;
}

/* Brand */
.brand-logo {
  max-width: 260px;
  height: auto;
}

.custom-heading {
  color: var(--brand);
  font-weight: 700;
}
.custom-paragraph {
  color: var(--ink);
}
.wizard-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.wizard-steps {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}
.wizard-step {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: var(--step-bg);
  position: relative;
  overflow: hidden;
}
.wizard-step.active {
  background: linear-gradient(90deg, var(--accent), #ffb469);
}
.wizard-step.complete {
  background: var(--brand);
}

/* Sections */
.step {
  display: none;
}
.step.active {
  display: block;
}

/* Buttons */
.dignity-button {
  background: #f27b21;
  color: #fff;
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: transform 0.06s ease, box-shadow 0.2s;
}
.dignity-button:hover {
  background-color: #1c2d59;
  transform: translateY(-1px);
}
.dignity-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Form titles */
.form-section-title {
  color: var(--brand);
  font-weight: 700;
  border-left: 4px solid var(--accent);
  padding-left: 0.6rem;
  margin-bottom: 0.75rem;
}

.border-bottom-only,
.form-control.border-bottom-only {
  border: 0;
  border-bottom: 2px solid #e4e8ee;
  border-radius: 0;
  padding-left: 0;
}
.border-bottom-only:focus,
.form-control.border-bottom-only:focus {
  border-bottom-color: var(--brand);
  box-shadow: none;
  outline: 0;
}

.is-invalid {
  border-color: #dc3545 !important;
}
.is-valid {
  border-color: var(--ok) !important;
}
.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
}
.was-validated .is-invalid ~ .invalid-feedback,
.is-invalid + .invalid-feedback {
  display: block;
}

.agency-form-box {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 576px) {
  .brand-logo {
    max-width: 200px;
  }
  .wizard-step {
    width: 28px;
  }
}

/* checkbox  */
.custom-check:checked {
  background-color: #1c2d59 !important;
  border-color: #1c2d59 !important;
}

.sms-link {
  color: #1c2d59;
  text-decoration: none;
  border-bottom: 1px solid #1c2d59;
  transition: all 0.2s ease-in-out;
}

.sms-link:hover {
  color: #f27b21;
  border-bottom: 1px solid #f27b21;
}
