Not only color — size, padding, and label text can change too
Color + press (:hover / :active)
Hover darkens the fill. :active on “Click and hold” also
shrinks font-size and padding so it feels pressed.
Font size grows on :hover
button.grow:hover raises font-size
and padding. On :active it shrinks slightly again.
Text swap on :hover
Two spans live in the button. Default shows .main;
on hover display: none / display: inline swaps to .alt.
That is how you “change text” with CSS only.
:focus — bigger type + background
Email
Name
Tab or click into a field. Focus changes border,
background, font-size, and padding
— not only color (rule 44).