.mpp-form {
    /* Use theme's default form container styles */
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Bootstrap classes if available */
.mpp-form .form-control {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

.mpp-form .form-label {
    margin-bottom: 0.5rem;
}

.mpp-form .btn {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

/* Generic form styling that works with most themes */
.mpp-form .form-field {
    margin-bottom: 1rem;
}

.mpp-form input[type="text"],
.mpp-form input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--wp--preset--border--default, #ddd);
    border-radius: var(--wp--preset--border-radius--default, 4px);
}

.mpp-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--wp--preset--font-weight--default, 500);
}

.mpp-form button[type="submit"] {
    padding: 0.5rem 1rem;
    background-color: var(--wp--preset--color--primary, #0073aa);
    color: var(--wp--preset--color--background, #fff);
    border: none;
    border-radius: var(--wp--preset--border-radius--default, 4px);
    cursor: pointer;
}

.mpp-form button[type="submit"]:hover {
    background-color: var(--wp--preset--color--secondary, #005177);
}
}