body {
  font-family: Arial, sans-serif;
}

.form-label.required::after {
  content: "*";
  color: red;
  margin-left: 4px;
}

.form-group {
  margin-bottom: 1rem;
}

.error-text {
  color: red;
  font-size: 0.875rem;
  display: none;
}

.success-text {
  color: #00ac0f;
  font-size: 0.875rem;
  display: none;
}

.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

/* .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -50%;
      width: 100%;
      height: 3px;
      background: #ddd;
      z-index: 1;
    } */

.circle {
  width: 30px;
  height: 30px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  z-index: 2;
}

.step.active .circle {
  background: #007bff;
}

.step.completed .circle {
  background: #28a745;
}

.step .label {
  margin-top: 8px;
  font-size: 14px;
  color: #aaa;
}

.step.active .label {
  color: #007bff;
}

.step.completed .label {
  color: #28a745;
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.form-buttons button {
  width: 100px;
}

.note {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 10px;
}

.consent-container {

  background-color: #eef2fa;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.consent-header {
  background-color: #f7931e;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.consent-content {
  margin: 20px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.consent-content ol {
  padding-left: 20px;
}

.consent-content li {
  margin-bottom: 10px;
}

.consent-footer {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}



.consent-footer input[type="checkbox"] {
  margin-right: 10px;
}