/* Переопределяем стили капчи */
.form .captcha-row.captcha-row {
    position: relative !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.form .captcha-row .captcha_image.captcha_image {
    height: auto !important;
    position: relative !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
}
.form .captcha-row .captcha_input.captcha_input {
    position: static !important;
    height: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    max-width: none !important;
    flex: none !important;
    min-width: 140px !important;
    width: 100% !important;
}
.form .captcha-row .captcha_input input[name=captcha_word] {
    position: static !important;
    width: 100% !important;
}
.captcha_input.error label.error {
    position: absolute !important;
    top: -20px !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    white-space: nowrap !important;
    font-size: 11px !important;
}
.form .captcha-row .captcha_input.captcha_input {
    position: relative !important;
    margin-top: 15px !important;
}
@media (max-width: 768px) {
    .form .captcha-row.captcha-row {
        gap: 15px !important;
    }
    .form .captcha-row .captcha_image.captcha_image {
        width: 100% !important;
        justify-content: space-between !important;
    }
    .form .captcha-row .captcha_input.captcha_input {
        width: 100% !important;
    }
    .captcha_input.error label.error {
        position: static !important;
        margin-bottom: 5px !important;
    }
    .form .captcha-row .captcha_input.captcha_input {
        margin-top: 0 !important;
    }
}
@media (max-width: 480px) {
    .form .captcha-row .captcha_image.captcha_image {
        flex-direction: column !important;
        gap: 10px !important;
        align-items: flex-start !important;
    }
    .refresh {
        align-self: flex-start !important;
    }
}