<style>
  .form-desktop {
    display: block;
  }
 
  .form-mobile {
    display: none;
  }
 
  @media only screen and (max-width: 768px) {
    .form-desktop {
      display: none !important;
    }
 
    .form-mobile {
      display: block !important;
    }
  }
</style>

