To change the text color or the font size of the warning messages in Bookly step by step booking form, add this CSS in Bookly > Appearance > Edit custom CSS:
.bookly-form .bookly-label-error {
color: red !important; /* to change the color */
font-size: 18px !important; /* to change the font size */
}