remove input default style code example
Example 1: remove input styling
input {
border: none; /* Removes the default border */
}
input:focus {
outline: none /* Removes the border when the input is clicked */
}
Example 2: remove default input style css
input:focus, textarea:focus, select:focus{
outline: none;
}
Example 3: remove all default styles from input
-webkit-appearance: none;