You can customize your HTML code a bit to make it easier to use CSS selectors. (This is not necessarily worth it, and may increase the size of your output.)
Add another class name to the class tags:
<form id="book_form">
<input class='ano_chegada something' .../>
<input class='ano_partida something' .../>
</form>
#book_form .something {...}
Or split what is in several classes:
<form id="book_form">
<input class='ano chegada' .../>
<input class='ano partida' .../>
</form>
#book_form .ano {...}
source
share