Buttons Changed with CSS

Default <button>

 

<button> tag

 

 

<input type="button"> tag


 

CSS used

.button {
background-color: #1E3F02;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}