/* Request Demo - Layout & Spacing Only */
.demo-form {
    max-width: 900px;
    margin: 0 auto;
}

/* Full width inputs, selects, textareas */
.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Add proper spacing between form fields */
.demo-form .column {
    margin-bottom: 2rem;
}

.demo-form .row {
    margin-bottom: 1rem;
}

/* Consent Section Spacing */
.consent-list {
    display: block;
    margin-top: 2rem;
    width: 100%;
}

.consent-item {
    display: block;
    margin-bottom: 1.2rem;
    text-align: left;
    line-height: 1.6;
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-item input[type="checkbox"] {
    display: inline-block;
    vertical-align: text-top;
    margin-right: 0.9rem;
    margin-top: 0.25rem;
    width: auto;
}

/* Mobile Responsive Spacing */
@media screen and (max-width: 768px) {
    .demo-form .column {
        margin-bottom: 1.8rem;
    }

    .consent-list {
        margin-top: 1.6rem;
    }
    
    .consent-item {
        margin-bottom: 1rem;
    }
    
    .consent-item input[type="checkbox"] {
        margin-right: 0.8rem;
    }
}

@media screen and (max-width: 600px) {
    .demo-form .column {
        margin-bottom: 1.5rem;
    }
}
