/* Reset CSS para todos os formulários */
form input,
form select,
form button,
form label,
form textarea {
    margin: 0;
    padding: 0;
    outline: none;
    background: none;
	border: none;
    font: inherit;
    color: inherit;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Reset para setas de selects */
form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%230073aa" d="M1.41 0.59L6 5.17l4.59-4.58L12 2l-6 6-6-6z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}