<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Start custom CSS */.wpforms-container.wpf-center {
    margin: 0 auto !important;
/* Adjust the width in the next 2 lines as your site needs */
    max-width: 700px !important;
    width:700px !important;
}
.sign-up-btn{
    display: block;
    margin: 0px auto !important;
}

/* Readjust the form width for smaller devices */
@media only screen and (max-width: 768px) {
 
    .wpforms-container.wpf-center {
    /* Reset the width for devices under 600px */
        max-width: 600px !important;
        width: auto !important;
}
     
}
@media only screen and (max-width: 600px) {
 
    .wpforms-container.wpf-center {
    /* Reset the width for devices under 600px */
        max-width: unset !important;
        width: auto !important;
}
     
}/* End custom CSS */</pre></body></html>