<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;style&gt;
/* General input field styling */
.hs-form .form-columns-0 .input,
.hs-form .form-columns-1 .input,
.hs-form .form-columns-2 .input {
  margin-right: 0 !important;
}

/* Two-column form field styling */
.hs-form .form-columns-2 .hs-form-field {
  width: calc(50% - 0.5rem) !important;
  float: left;
  margin-bottom: 1rem; /* Adjust the spacing between rows */
  box-sizing: border-box; /* Ensures padding and borders are included in the width */
}

/* Responsive adjustments for screens smaller than 650px */
@media screen and (max-width: 650px) {
  .hs-form .form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}

/* Ensure the last field in two-column layout floats left */
.hs-form .form-columns-2 .hs-form-field:last-child {
  float: left !important;
}
&lt;/style&gt;</pre></body></html>