/* Ensure the coupon input and button sit side-by-side without overlapping */
.gform_wrapper .gf_coupon_code {
    width: calc(100% - 120px) !important; /* Adjust 120px based on button width */
    display: inline-block !important;
    float: left !important;
}

.gform_wrapper #gf_coupon_button {
    width: 100px !important; /* Fixed width to prevent overlap */
    display: inline-block !important;
    margin-left: 10px !important;
    float: left !important;
}

/* Clear the float to prevent layout breaking below the field */
.gform_wrapper .ginput_container_coupon:after {
    content: "";
    display: table;
    clear: both;
}