/* Simply select the input field you want to
style using the selector below */
input[type=/* "Type" */] {
/* Your style here */
}
/* Example */
input[type="text"] {
width: 45vw;
height: 30px;
padding: 3px;
font-size: 1.8rem;
border: 1px solid gray;
}
/* Read more about CSS selector's here
https://www.w3schools.com/cssref/css_selectors.asp
*/