reset all input styles code example
Example 1: reset all input styles with 1 property css
all: unset;
Example 2: reset submit input style
button, input[type="submit"], input[type="reset"] {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}