Puedes agregarle un id al enlace del registro
<a hrer="registrate.php" id="registro"> Registrate </a>
Y en el css
input:hover, textarea:hover, select:hover {
border-color: #ccc;
}
input:focus, textarea:focus {
border-color: #ccc;
background: url('input-grey.png') center;
}
input[type=submit], input.button {
color: #888;
border-color: #ccc;
background: url('input-grey.png') center;
cursor: pointer;
padding: 3px;
}
input[type=submit]:hover, input.button:hover {
background: #e6e6e6;
border-color: #d6d6d6;
}
input[type=submit]:focus, input.button:focus {
background: #fcfcfc;
border-color: #d6d6d6;
}
agregarle en las lineas por ejemplo:
input:hover, textarea:hover, select:hover, #registro {
según yo debería funcionar xD