function clear_bg() {
	
	var email = document.getElementById('email');
	var password = document.getElementById('password');

	if (email.value !='') {
	  email.style.backgroundColor = "white";
	}

	if (password.value !='') {
	  password.style.backgroundColor = "white";
	}

}
