
h2 { margin-top: 0; }

/* Stepper */
.stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.step {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ccc;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.step.active {
  background: linear-gradient(90deg,rgba(156, 37, 143, 1) 10%, rgba(0, 36, 79, 1) 100%);
  color: #fff;
}

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; }

label { display: block; margin: 10px 0 5px; }

input, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
}

.inline {
  display: flex;
  gap: 10px;
}
.inline input { flex: 1; }

.conditional {
  display: none; 
  padding: 10px;
  border-radius: 6px; 
}

/* Navigation */
.nav {
  display: inline-block;
  justify-content: space-between;
  margin-top: 20px;
  float:right;
}
button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-primary { background: #007bff; color: #fff; }
.btn-secondary { background: #6c757d; color: #fff; }

/* Summary */
.summary-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
}

/* Success */
.success {
  text-align: center;
  padding: 30px;
}

/* Checkbox fix */
.bess-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.bess-checkbox input {
  width: auto;
  margin: 0;
}

.nice-select-form-control {
    padding: 0 0 0 15px;
}
