/* Container */
.sec-pTB {
  padding: 40px 20px;
}

.spl-form {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

}

.contactForm {
  display: flex;
  flex-direction: column;
}

.contactForm label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 14px 0 6px;
}

.contactForm label sup {
  color: #e53935;
  margin-left: 2px;
}

/* Inputs */
.contactForm input.input,
.contactForm select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contactForm input.input:focus,
.contactForm select:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.15);
}

.contactForm select {
  appearance: none;

  margin-top: 14px;
}

/* Number input arrows cleanup */
.contactForm input[type="number"]::-webkit-inner-spin-button {
  opacity: 1;
}

/* Error messages */
.contactForm .error-field,
.contactForm .error-field1 {
  display: none;
  font-size: 12px;
  color: #e53935;
  margin-top: 4px;
}

.contactForm input.input.error + .error-field,
.contactForm input.input.empty + .error-field1 {
  display: block;
}

/* GDPR / privacy text */
.dwn-priv {
  font-size: 12px;
  color: #666;
  margin-top: 18px;
  line-height: 1.5;
}

.dwn-priv a {
  color: #1976d2;
  text-decoration: none;
}

.dwn-priv a:hover {
  text-decoration: underline;
}

.tac {
  text-align: center;
}

/* Submit button */
.fbutton {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.fbutton .sub {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.fbutton .sub:hover {
  background: #125ea8;
}

.fbutton .gdpr_reset {
  display: none; /* typically hidden reset button */
}

/* Responsive */
@media (max-width: 600px) {
  .spl-form {
    padding: 20px;
    margin: 0 10px;
  }
}