Unresponsive form for mobile

Hi @AllisonAltus,

The issue is due to the fixed position of the form, you need to change CSS in media queries.

Please add below CSS code in your page stylesheet.

@media (max-width: 767px) {
 .main-content {
 position: static !important;
 }
}

hope this work!

Team TRooInbound