/* Для стандартных полей ввода */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea {
    padding: 14px 14px !important;
    box-sizing: border-box;
  }

  /* Для кастомных классов Тильды */
  .t-input,
  .t-textarea {
    padding: 12px 12px !important;
    display: flex;
    align-items: center;
  }

@media screen and (orientation: landscape) and (max-width: 1024px) {
  body::before {
    content: "Пожалуйста, поверните устройство в портретный режим";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    text-align: center;
    padding-top: 50vh;
    font-size: 24px;
    pointer-events: none; /* Чтобы клики проходили сквозь сообщение */
  }
  
  /* Дополнительно: скрываем основной контент */
  body > *:not(body::before) {
    display: none !important;
  }
}