/* --- SelexiQ Custom Form Style --- */

/* Step 1: Fields ko gol (rounded) karna */
.form-control {
    border-radius: 6px !important;
    border: 1px solid #ced4da !important;
}

/* Step 2: Form ko responsive 2-column layout dena (sirf desktop par) */
@media (min-width: 768px) {
    
    #web-to-lead-form .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #web-to-lead-form .col-md-12 {
        width: 48% !important;
        margin-bottom: 15px !important;
    }

    /* Step 3: Makhsoos fields ko poori line (100% width) dena */
    #web-to-lead-form .col-md-12[data-name="address"],
    #web-to-lead-form .col-md-12[data-name*="courses_to_enroll"],
    #web-to-lead-form .col-md-12[data-name*="is_this_your_first_time"],
    #web-to-lead-form .col-md-12[data-name*="how_will_you_attend"]
    {
        width: 100% !important;
    }
}