/* 1) Основная строка: поля + кнопка */
#rec1903343991 .t-form{
  display: flex !important;
  align-items: flex-end !important;
  gap: 12px !important;

  position: relative !important;      /* нужно для абсолютного чекбокса */
  padding-bottom: 34px !important;    /* место под чекбокс */
}

/* 2) Блок с полями — в ряд */
#rec1903343991 .t-form__inputsbox{
  display: flex !important;
  gap: 12px !important;
  flex: 1 1 auto !important;
}

/* 3) Сами поля — растягиваем */
#rec1903343991 .t-input-group{
  flex: 1 1 240px !important;
  margin: 0 !important;
}

/* 4) Кнопка — НЕ на 100% ширины, остаётся в ряду */
#rec1903343991 .t-form__bottom-wrapper{
  flex: 0 0 auto !important;
  margin: 0 !important;
}

#rec1903343991 .t-form__submit{
  width: auto !important;
  margin: 0 !important;
}

#rec1903343991 .t-submit{
  width: auto !important;
  white-space: nowrap !important;
}

/* 5) Чекбокс/согласие — под формой (на всю ширину) */
#rec1903343991 .t-form__privacy,
#rec1903343991 .t-form__legal,
#rec1903343991 .t-input-group_cb{
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  margin: 0 !important;
}

/* 6) Мобильная адаптация: всё может переноситься, чекбокс всё равно снизу */
@media (max-width: 640px){
  #rec1903343991 .t-form{
    flex-wrap: wrap !important;
    padding-bottom: 44px !important;
  }
  #rec1903343991 .t-form__inputsbox{
    flex: 1 1 100% !important;
    flex-wrap: wrap !important;
  }
  #rec1903343991 .t-form__bottom-wrapper{
    flex: 0 0 auto !important;
  }
}

