/* Scoped styling: enkel voor dit Voltina form block */
.voltina-form .fluentform,
.voltina-form .fluentform * {
  font-family: inherit;
}

/* Labels */
.voltina-form .ff-el-input--label label,
.voltina-form .ff-el-input--label {
  color: #000; /* body copy = zwart */
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* Inputs / selects / textarea */
.voltina-form .ff-el-form-control,
.voltina-form input[type="text"],
.voltina-form input[type="email"],
.voltina-form input[type="tel"],
.voltina-form input[type="url"],
.voltina-form input[type="number"],
.voltina-form input[type="date"],
.voltina-form select,
.voltina-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #000;
  border-radius: 18px;
  padding: 14px 16px;
  line-height: 1.2;
  box-shadow: none !important;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

/* Placeholder */
.voltina-form ::placeholder {
  color: rgba(0,0,0,0.45);
}

/* Focus state (Voltina pink accent) */
.voltina-form .ff-el-form-control:focus,
.voltina-form input:focus,
.voltina-form select:focus,
.voltina-form textarea:focus {
  border-color: rgba(230, 0, 126, 0.65); /* #e6007e */
  box-shadow: 0 0 0 4px rgba(230, 0, 126, 0.14) !important;
}

/* Better spacing between fields */
.voltina-form .ff-el-group {
  margin-bottom: 16px;
}

/* Checkbox / radio alignment */
.voltina-form .ff-el-form-check {
  gap: 10px;
}

.voltina-form .ff-el-form-check input[type="checkbox"],
.voltina-form .ff-el-form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #e6007e;
}

/* Submit button: Voltina gradient (pink → orange, orange enkel in verloop) */
.voltina-form .ff-btn-submit,
.voltina-form button.ff-btn-submit {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #e6007e 0%, #f08048 100%);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: transform 0.08s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.voltina-form .ff-btn-submit:hover {
  filter: brightness(1.02);
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
  transform: translateY(-1px);
}

.voltina-form .ff-btn-submit:active {
  transform: translateY(0);
}

/* Validation errors */
.voltina-form .error,
.voltina-form .ff-el-is-error .ff-el-form-control {
  border-color: rgba(230, 0, 126, 0.55);
}

.voltina-form .ff-el-is-error .error.text-danger,
.voltina-form .ff-el-is-error .ff-el-help-text {
  color: #e6007e;
  font-weight: 600;
}

/* Success message */
.voltina-form .ff-message-success {
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(230, 0, 126, 0.08);
  color: #000;
  border: 1px solid rgba(230, 0, 126, 0.20);
}



.voltina-heading {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* Subtiele accentlijn onder heading */
.voltina-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 1.25rem;
  background-color: #e6007e; /* Voltina pink */
  border-radius: 999px;
}
