/* Remover margens e preenchimentos padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Remover listas padrão */
ul, ol {
  list-style: none;
}
/* Remover bordas de imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Tabelas */
table {
  border-collapse: collapse;
}
/* Estilização básica para inputs e botões */
button, input, select, textarea {
  font-family: inherit; 
  font-size: inherit; 
  border: none;
  outline: none;
}
input, textarea {
  border: none;
  outline: none;
}