/*
* Gravity Forms Plugin
 */

body .gform_wrapper .gform_heading .gform_title {
    font-family: var(--wp--custom--typography--fontfamily);
    font-weight: var(--wp--custom--typography--fontweight);
    font-size: var(--wp--custom--typography--h2);
    font-size: var(--wp--custom--typography--h-2);
}

/* student email form */
body .gform_wrapper.student-email-gform_wrapper .gform_heading .gform_title {
    font-size: var(--wp--preset--font-size--normal);
    padding-bottom: 10px;
}
body .gform_wrapper .gform_body .gform_fields,
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_checkbox .gchoice,
body .gform_wrapper .gform_body .gform_fields li {
    list-style: none;
    list-style-type: none;
}

ul.gform_fields li {
    margin-bottom: 20px;
}
/* add padding after each input box */
.ginput_container > * {
    padding-right: 20px;
}
/* add padding inside the input box */
.gform-body input {
    padding: 5px;
    border-radius: 3px;
}

/* Submit button styling */
body .gform_wrapper .gform_footer input[type=submit] {
    border-radius: var(--wp--custom--button--radius);
    text-transform: uppercase;
    font-family: var(--wp--custom--typography--fontfamilyboldcondensed);
    font-size: var(--wp--custom--button--font-size);
    border: none;
    letter-spacing: var(--wp--custom--button--letter-spacing);
    padding: .25rem 1.25rem;
    min-width: 150px;
}
/* button color by background color of container*/
.block-container.has-darkblue-background-color .gform_wrapper .gform_footer input[type=submit],
.has-darkblue-background-color .gform_wrapper .gform_footer input[type=submit]{
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--darkblue);
}
.block-container.has-blue-background-color .gform_wrapper .gform_footer input[type=submit],
.has-blue-background-color .gform_wrapper .gform_footer input[type=submit]{
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--blue);
}
.block-container.has-white-background-color .gform_wrapper .gform_footer input[type=submit],
.has-white-background-color .gform_wrapper .gform_footer input[type=submit] {
    background-color: var(--wp--preset--color--darkblue);
    color: var(--wp--preset--color--white);
}


body .gform_wrapper .gform_footer input[type=submit]:hover {
    background-color: var(--wp--custom--button--hover--background);
    color: var(--wp--custom--button--hover--text);
}