Customizing a Radio Field with CSS

Customizing a Radio Field with CSS

Hey, I am attempting to use the CSS in the Notes Field trick to load some styles on the Load of a Creator Form.

I have already got a background image and a few other things to work on Creator Pages. 

Is there a way to load a style for a single field and not the entire form with the CSS trick?

I can change all field labels to the same formatting, but I want to alter a single field label and have it be unique. 

I used this snippet as a basis to alter some HTML inside the notes field.
  1. styler = "<style>.image {display:block;width:'100%';height:'100%';}}</style>";
  2. input.image = <img src='publicurlplaceholder' alt='Placeholder' class='image'> + styler;
I used this snippet to hide the submit and reset button.
  1. input.primary = "<style>.zc-live-primary-btn{visibility:hidden;}</style>";
  2. input.secondary = "<style>.zc-live-secondary-btn{visibility:hidden;}</style>";
I guess what I am really asking for is the selector list for Zoho Creator Forms and I'm not sure where to get that documentation. I also know that CSS is extremely limited when used in this manner as a lot of features are unavailable, yet again no documentation on valid commands from Zoho.  

Any help would be appreciated.