.form-wrapper {
  max-width: 550px;
  margin: 20px auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

.step {
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.step.active {
  display: block;
  opacity: 1;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 1px solid var(--dfp-color, #2596be);
  border-radius: 12px;
  margin-bottom: 15px;
}

.button-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

button {
  background: var(--dfp-color, #2596be);
  color: #fff;
  padding: 14px 20px;
  border: none;
  cursor: pointer;
  width: 48%;
  border-radius: 12px;
  font-size: 16px;
  transition: .2s;
}
button:hover {
  background: #1f7fa0;
}
button.prev {
  background: #a1a1a1;
}
button.prev:hover {
  background: #7d7d7d;
}

.dfp-success {
  max-width: 550px;
  margin: 10px auto;
  padding: 12px 16px;
  border-radius: 8px;
  background: #e3f7e3;
  border: 1px solid #7ac27a;
  color: #215721;
}
