jQuery(document).ready(function($) {
function changeButtonColors() {
$('.cosmosfarm-members-form button, .cosmosfarm-members-form input[type=submit]').css({
'background-color': '#bd52fa',
'background': '#bd52fa',
'background-image': 'none',
'color': 'white',
'border-color': '#bd52fa'
});
}
// 페이지 로드 시 실행
changeButtonColors();
// 0.5초마다 반복 실행하여 다른 스크립트가 변경하는 경우를 대비
setInterval(changeButtonColors, 500);
});