  /* 1. Находим контейнер кнопки внутри формы с вашим классом */
  .full-width-form .tn-form__submit-container {
    width: 100% !important;
    max-width: 100% !important;
    /* Убираем абсолютное позиционирование и центрирование от Тильды */
    position: relative !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }

  /* 2. Растягиваем саму кнопку */
  .full-width-form .tn-form__submit {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    /* Убираем фиксированную ширину, которую Тильда пишет в инлайновых стилях */
    min-width: 100% !important; 
    box-sizing: border-box !important;
  }

  /* 3. Для стандартных тегов внутри кнопки (на случай глубокой вложенности) */
  .full-width-form .t-submit {
    width: 100% !important;
    max-width: 100% !important;
  }


* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

  /* Глобальное исправление обрезки Zero Block попапов с Auto Layout на мобильных */
  @media screen and (max-width: 960px) {
    /* Отключение жесткого ограничения высоты экрана */
    .t-popup__container .t396__artboard {
      height: auto !important;
      min-height: 100dvh !important; 
    }
    
    /* Принудительный скролл и адаптация под мобильные браузеры */
    .t-popup__container {
      max-height: 100dvh !important;
      max-height: -webkit-fill-available !important;
      overflow-y: auto !important;
      -webkit-overflow-scrolling: touch !important;
    }
  }