.fluent_form_3 .ff-el-form-control {
    width: 100%;
    background: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: var(--dz-fs-body) !important;
    line-height: 1.2 !important;
    color: #49593a !important;
    box-shadow: none !important;
}

@media (max-width: 1024px) {
    .fluent_form_3 .ff-el-form-control {
        font-size: 17px !important;
    }
}

@media (max-width: 767px) {
    .fluent_form_3 .ff-el-form-control {
        font-size: 16px !important;
    }
}

.fluent_form_3 .ff-el-group {
    margin-bottom: 10px;
}

.fluent_form_3 .ff-el-form-control::placeholder {
    color: #717271 !important;
    opacity: 1 !important;
}

.fluent_form_3 input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

@media (max-width: 1024px) {
    .fluent_form_3 input[type="checkbox"] {
       width: 17px !important;
        height: 17px !important;
    }
}

@media (max-width: 767px) {
    .fluent_form_3 input[type="checkbox"] {
        width: 16px !important;
        height: 16px !important;
    }
}

.fluent_form_3 .ff-el-form-check-label,
.fluent_form_3 .ff-el-form-check-label span {
    font-family: 'Poppins', sans-serif !important;
    font-size: var(--dz-fs-body) !important;
    line-height: 1 !important;
    color: #fff !important;
}

@media (max-width: 1024px) {
    selector .fluent_form_3 .ff-el-form-check-label,
    selector .fluent_form_3 .ff-el-form-check-label span {
    font-size: 17px !important;
    }
}

@media (max-width: 767px) {
    selector .fluent_form_3 .ff-el-form-check-label,
    selector .fluent_form_3 .ff-el-form-check-label span {
    font-size: 16px !important;
    }
}

.fluent_form_3 .ff-btn-submit {
    background: #f3bb21 !important;
    color: #49593a !important;
    border: none !important;
    border-radius: 7px !important;
    padding: 8px 10px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

@media (max-width: 1024px) {
    .fluent_form_3 .ff-btn-submit {
    font-size: 17px !important;
    }
}

@media (max-width: 767px) {
    .fluent_form_3 .ff-btn-submit {
    font-size: 16px !important;
    transition: transform 0.2s ease;
    }
}

.fluent_form_3 .ff-btn-submit:hover {
  transform: scale(1.05);
  opacity: 1 !important;
}

#fluentform_3_errors {
    position: fixed !important;
    top: 40px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;

    z-index: 999999 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;

    margin: 0 !important;
    padding: 0 16px !important;

    pointer-events: none !important;
}

#fluentform_3_errors .error {
    position: relative !important;

    width: fit-content !important;
    min-width: 320px !important;
    max-width: 600px !important;

    background: #fdeaea !important;
    border: 1px solid #e0a4a4 !important;
    color: #7a1f1f !important;

    padding: 16px 50px 16px 20px !important;
    border-radius: 6px !important;

    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;

    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;

    pointer-events: auto !important;

    opacity: 0;
    animation: dzFadeInOut 7s ease forwards;
}

#fluentform_3_errors .error-text {
    display: block !important;
    margin: 0 !important;
}

#fluentform_3_errors .error-clear {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    font-size: 20px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    color: #7a1f1f !important;
    font-weight: bold !important;
}

@keyframes dzFadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.fluentform_wrapper_3 .ff-message-success,
#fluentform_3_success {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    z-index: 999999 !important;

    min-width: 300px !important;
    max-width: 90% !important;

    background: #e8f7e8 !important;
    border: 1px solid #9ed39e !important;
    color: #1f5f1f !important;

    padding: 16px 20px !important;
    border-radius: 6px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;

    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: center !important;

    opacity: 0;
    animation: dzFadeInOut 4s ease forwards;
}

.fluentform_wrapper_3 .ff-message-success p,
#fluentform_3_success p {
    margin: 0 !important;
}

.fluent_form_3 .ff-el-is-error .text-danger,
.fluent_form_3 .ff-el-is-error .error,
.fluent_form_3 .ff-el-is-error .ff-el-help-message,
.fluent_form_3 .error.text-danger {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: var(--dz-error-text) !important;
  background: var(--dz-error-bg) !important;
  font-size: var(--dz-fs-fine-print) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  padding: 8px 10px !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

.dz-privacy-agree a {
    color: inherit !important;
    text-decoration: underline !important;
}

.dz-privacy-agree input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: var(--dz-fs-body) !important;
  height: var(--dz-fs-body) !important;
  border: 1px solid var(--dz-grey-light) !important;
  border-radius: 3px !important;
  background: var(--dz-white) !important;
  cursor: pointer !important;
  position: relative !important;
  flex: 0 0 18px !important;
  margin-right: 0 !important;
  margin-top: 1px !important;
}

.dz-privacy-agree input[type="checkbox"]:checked {
  background: var(--dz-ocher-light) !important;
}

.dz-privacy-agree input[type="checkbox"]:checked::after {
  content: "" !important;
  position: absolute !important;
  left: 4px !important;
  top: 0px !important;
  width: 8px !important;
  height: 12px !important;
  border: solid var(--dz-white) !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}