You have a legal error in the last selector: inpur instead of input .
Also, you don't have a class named input, you are actually targeting the elements themselves. Change .input to input
To get the effect of rounded corners, add a border radius. Your latest CSS declaration should look like above.
input[type=button], input[type=text] { border-radius: 5px; font-family: Sansation; }
source share