/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       Divi
 Version:        1.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */
/* 1. Force the Divi Inner Content container (the parent) to use full width */
.et_builder_inner_content .tutor-mt-32 {
    max-width: none !important; /* Remove any max-width restriction */
    /*width: 90% !important;  Ensure it takes 100% of the available area */
    box-sizing: border-box; /* Include padding/border in the element's total width/height */
}

/* 2. Style the form wrapper itself */
#tutor-registration-wrap {
    /* To ensure the form is centered and has good padding on the outside,
       we set a max-width and center it. You can adjust 1200px to your preference.
    */
    max-width: 1200px;
    width: 90%; 
    padding-top: 0;
    margin-top:40px;
    margin-bottom:40px;
    
    /* Ensure the padding you removed earlier is handled cleanly */
}

/* 3. Media query for full width on smaller screens */
@media (max-width: 980px) {
    #tutor-registration-wrap {
        width: 100%;
        padding: 20px 15px; /* Add side padding for mobile */
    }
}