For the issue with the label, if your form is set to have labels on the Left, then it adds an additional class and the percentage width for that is overriding your custom CSS.
To fix that, either switch Labels to Top, or add !important like so:
.Row .cf-label {width:100% !important;}
CSS is applied based on "specificity" so any time there's conflicting settings, the most specific selector is what is applied. !important is like the "nuclear option" that can override anything that isn't already using !important.
CSS Specificity (w3schools.com)
Next, you'll probably want to switch the radio buttons to either side-by-side, or two columns, but if you set them to two colums your 600px width on .cf-field is going to be a problem.
Instead that should be 100%, or maybe 98% to ensure you have some spacing between fields.
.Row .cf-field {width:100% !important;}
Lastly, instead of setting the .cf-field element to 600px to keep your field inputs wide enough, you can either set them to Large (X-Large will work for the Initials/Single Line, but not the Date), or you can manually set a width for the input children.
If you do this, you'll need to keep the % lower to ensure there's room for the date picker icon, so something like 85% would do the trick.
Putting it all together and consolidating duplicate settings you get:
.Row {
display:inline-block;
width: 33%;
vertical-align:top;
}
.Row .cf-field,
.Row .cf-label {
width:100% !important;
}
.Row .cf-field input[type="text"] {
width: 85% !important;
}
NOTE: the reason for the input[type="text"] selector is to make sure it doesn't affect the radio inputs.