/* Remove borders on all form inputs in Power Pages */

select.form-select,
textarea.form-control {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Remove borders when focused */
select.form-select:focus,
textarea.form-control:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Remove borders on Power Pages wrapper divs */
div[id^="entityformcontrol_"] {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}