/* Restrict form width and add a background color */
.webform-submission-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #eee; /* Light grey background */
    padding: 30px;             /* Adds breathing room inside the colored box */
    border-radius: 8px;        /* Optional: rounds the corners slightly */
}