/* Стили шаблона functions.php. Порядок правил и подключения сохранён; файл кэшируется браузером. */
/* Предотвращаем автоматическое увеличение при фокусе */
        @media screen and (max-width: 768px) {
            input[type="text"],
            input[type="email"],
            input[type="password"],
            input[type="search"],
            input[type="tel"],
            input[type="url"],
            input[type="number"],
            textarea,
            select {
                font-size: 16px !important;
                transform: scale(1);
            }
            
            /* Убедитесь, что масштаб не изменяется при фокусе */
            input:focus,
            textarea:focus,
            select:focus {
                transform: scale(1) !important;
            }
        }
