@media (min-width: 481px) {
  /* Контейнер формы */
  .t-form__inputsbox {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f5f5f5;
      border-radius: 50px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 10px 20px;
      max-width: 560px;
      margin: 0 auto;
  }

  /* Поле ввода */
  .t-input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-size: 16px;
      color: #333;
      margin-right: 10px;
      padding: 10px;
  }

  /* Кнопка отправки */
  .t-submit {
      background: linear-gradient(90deg, #FFD600, #FF8A00);
      border: none;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border-radius: 50px;
      padding: 10px 20px;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .t-submit:hover {
      background: #FFD903; /* Цвет при наведении */
  }
}

/* Удаление кастомного стиля для мобильных устройств */
@media (max-width: 480px) {
  .tilda-form-class {
      all: unset; /* сброс всех кастомных стилей */
  }
}
