/**
 * Amasty reCAPTCHA positioning and button state styling
 */

/* Position captcha before send button */
.amcform-toolbar .am-recaptcha-block {
    order: -1;
    margin-bottom: 15px;
}

/* Remove background from captcha container */
.amform-form .am-recaptcha-block {
    background: transparent;
    border: none;
    padding: 0;
}

/* Disabled button styling */
.amform-form button[type="submit"]:disabled,
.amform-form button[type="submit"].disabled-by-captcha {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

