Certain concepts may be easier to understand as dates rather than datetimes. For example, birthdays, paydays, and due dates all could potentially be datetimes, but they may be far better expressed as simple dates. Expressing these as datetimes could lead to confusion/ambiguity down the road.
First of all, future maintainers of your code may think that you're already using dates. Then they could be surprised by how the comparison operations behave, as two apparently identical birthdays may not be "equal."
Also, even if they know that a birthday is represented as a datetime, it's not immediately obvious what the time will be. It might be reasonable for the time to always be the exact time of birth in UTC. But then there may have to be considerations when the data you get from your users is incomplete, and you default the time to be midnight UTC. And then if you do that, you no longer know if a birthday with a midnight UTC time was auto-filled, or if that was actually user provided data.
And otherwise, if you just assign a placeholder midnight UTC time to each datetime, the meaning of the associated time field of every birthday may still not be immediately clear to someone new to the codebase. Someone who isn't aware of this convention could change the time field of one of these datetimes, and that could then lead to functionality breaking very invisibly. If it had just been a date, that problem would have been averted.
tl,dr: date exists to make it easier for developers to use the "right tool for the job."