#onpv-contact-form-wrap {
  max-width: 510px; margin: 32px auto;
  font-family: 'Poppins', Arial, sans-serif;
}
#onpv-contact-form label { font-weight: 500; font-size: 12px; color: #333; line-height: 22px; }
.onpv-field { margin-bottom: 0px; }
.onpv-row { display: flex; gap: 14px; }
.onpv-row .half { flex: 1; }
#onpv-contact-form input, #onpv-contact-form select, #onpv-contact-form textarea {
  font-family: 'Poppins', Arial, sans-serif; border-radius: 7px; border: 1px solid #dedede;
  font-size: 1rem; width: 100%; padding: 8px 14px; margin-top: 5px;
  box-sizing: border-box; background: #f7faff; transition: border .2s;
}
#onpv-contact-form input:focus, #onpv-contact-form select:focus, #onpv-contact-form textarea:focus {
  border-color: #ef4444; background: #fff;
}
.onpv-btn-red {
  background: #22C55E; color: #fff; border: none; border-radius: 9px;
  font-size: 1.12rem; font-weight: bold; padding: 14px 0; width: 100%; margin-top: 5px;
  box-shadow: 0 3px 14px rgba(239,68,68,0.10); transition: background 0.22s, transform 0.2s;
  cursor: pointer; font-family: 'Poppins', Arial, sans-serif; letter-spacing: 0.5px;
  position: relative; overflow: hidden;
}
.onpv-btn-red:active { transform: scale(0.96); }
.onpv-btn-red.loading { background: #f87171; pointer-events: none; }
.onpv-success-message {
  display: none; color: #22c55e; margin-top: 14px; text-align: center;
  font-size: 1.12rem; font-weight: 600; min-height: 32px;
  animation: popin-success .6s cubic-bezier(.67,0,.33,1);
}
@keyframes popin-success {
  0% { transform: scale(0.95) translateY(25px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.onpv-terms-wrap { margin-top: 5px; margin-bottom: 14px; }
.onpv-terms-label { display: flex; align-items: center; font-size: 0.96rem; cursor: pointer; }
.onpv-custom-checkbox {
  width: 81px; height: 21px; border: 2px solid #22C55E; border-radius: 5px; margin-right: 10px;
  position: relative; background: #fff; display: inline-block; transition: border .2s;
}
.onpv-terms-label input[type=checkbox]:checked + .onpv-custom-checkbox {
  background: #ef4444;
  border-color: #ef4444;
}
.onpv-terms-label input[type=checkbox]:checked + .onpv-custom-checkbox:after {
  content: '\2713'; position: absolute; color: #fff; left: 2px; top: 0px; font-size: 15px; font-weight: bold;
}
.onpv-link { color: #22C55E; text-decoration: underline; cursor: pointer; }
.onpv-link:hover { text-decoration: none; }
.onpv-terms-text { user-select: none; }
@media (max-width: 700px) {
  #onpv-contact-form-wrap { max-width: 97vw; padding: 16px 2vw 16px 2vw;}
  .onpv-row { flex-direction: column; gap: 0; }
}
.onpv-error {
  display: block;
  color: #ef4444;
  font-size: 10px;
  margin-top: 4px;
  min-height: 0px;
  line-height: 1.3;
  transition: color 0.2s;
}
input#onpv-consent {
    display: none;
}
input::placeholder {
    font-size: 13px !important;
}