Cómo eliminar el botón de aspecto predeterminado
/* CSS */
button {
border: none;
backgroundColor: white;
}
Plain Panda
/* CSS */
button {
border: none;
backgroundColor: white;
}
button.style.border = "none";
button.style.backgroundColor = "white";