/* ✅ Center Form */
.multi-step-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  width: 100%;
  margin: 30px auto;  /* Center horizontally */
}

/* ✅ Progress Bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  counter-reset: step;
}

.progress-step {
  width: 35px;
  height: 35px;
  background: #d3d3d3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
}

.progress-step.active {
  background: green;
  color: #fff;
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: 45px;
  font-size: 12px;
  color: green;
}

/* ✅ Input Styling */
.floating-label {
  position: relative;
  display: block;
  margin: 15px 0;
}

.floating-label input,
.floating-label select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 16px;
  box-sizing: border-box;
}

.floating-label label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  font-size: 12px;
  padding: 0 4px;
  color: #555;
  transition: 0.2s ease all;
  pointer-events: none;
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label select:focus + label,
.floating-label select:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
}

/* ✅ Two Column Layout */
.two-columns {
  display: flex;
  gap: 10px;
}

.two-columns .floating-label {
  flex: 1;
}

/* ✅ Buttons */
button {
  padding: 10px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.next-step {
  background: #ffcc00;
  color: black;
  font-weight: bold;
}

.prev-step {
  background: #ddd;
  margin-right: 10px;
}

.wpcf7-submit {
  background: green;
  color: white;
  font-weight: bold;
}