.uc-form {
  direction: rtl;
  box-sizing: border-box;
    display: flex;
  flex-direction: row-reverse; /* הופך סדר בדסקטופ */
   justify-content: center !important;
}

/* במובייל — סדר אנכי רגיל */
@media (max-width: 768px) {
  .uc-form .t-form__inputsbox {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .uc-form .t-submit {
    width: 100% !important;
    justify-content: center !important;
  }
}