/* Полное скрытие всех форм и input полей на мобилке */
@media screen and (max-width: 768px) {
    
    /* Все input поля */
    input,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        display: none !important;
    }
    
    /* Все формы */
    form {
        display: none !important;
    }
    
    /* Любые прямоугольники с вводом */
    [class*="input"],
    [class*="Input"],
    [class*="field"],
    [class*="Field"],
    [class*="textbox"],
    [class*="TextField"],
    [class*="textField"] {
        display: none !important;
    }
    
    /* Контейнеры форм */
    [class*="form"],
    [class*="Form"],
    [id*="form"],
    [id*="Form"] {
        display: none !important;
    }
    
    /* Блоки регистрации */
    [class*="register"],
    [class*="Register"],
    [class*="signup"],
    [class*="Signup"],
    [class*="sign-up"] {
        display: none !important;
    }
    
    /* Специфичные для Binance */
    .bn-input,
    .bn-textField,
    [class*="home-email"],
    [class*="home-phone"],
    div[class*="cta"] {
        display: none !important;
    }
    
    /* Скрываем любые видимые прямоугольники */
    div[style*="border"],
    div[class*="box"]:has(input) {
        display: none !important;
    }
}



