ACF field labels on the admin user page are bolder than other labels on that same page.
I suspect this is due to the recent admin styling update with WordPress 5.3.
To fix this small detail:
Set the font weight to 600
, in stead of bold
.acf-field .acf-label label {
font-weight: 600;
}