/* =====================================================
   TILDA BF204 / BF204N – HARD RADIO & CHECKBOX FIX
   ===================================================== */

/* ===== INPUTS ===== */
.t-form input[type="text"],
.t-form input[type="email"],
.t-form input[type="tel"],
.t-form textarea {
    font-size: 20px !important;
    line-height: 1.4 !important;
}

/* ===== FIELD TITLES ===== */
.t-form .t-input-title,
.t-form .t-form__title,
.t-form .t-form__subtitle {
    font-size: 22px !important;
    font-weight: 400 !important;
}

/* ===== RADIO & CHECKBOX TEXT (MAX PRIORITY) ===== */
.t-form input[type="radio"] + span,
.t-form input[type="checkbox"] + span {
    font-size: 18px !important;
    line-height: 1.4 !important;
}

/* ===== EVEN HARDER OVERRIDE ===== */
.t-form label span {
    font-size: 18px !important;
}
/* ================================
   FIX SMALL RADIO TEXT ON MOBILE
   ================================ */

@media (max-width: 640px) {

    /* Убираем масштабирование формы */
    .t-form,
    .t-form__inputsbox,
    .t-form__inputsbox * {
        transform: none !important;
        zoom: 1 !important;
    }

}


