#lf_form_container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lf_form_container form {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* This ensures padding and border are included in the width/height */
    border: none;
}

#lf_form_container form label, 
#lf_form_container form input,
#lf_form_container form textarea {
    display: block; /* Makes each element take a full line */
    width: 100%;    /* Makes each element occupy full container width */
    margin-bottom: 10px; /* Adds some space below each element */
    box-sizing: border-box; /* Includes padding and border in the width */
}

#lf_form_container form textarea {
    height: 150px; /* Adjust height as needed */
}

.at-widgets
{
    padding: 0px;
}