/* Just the "why do you want to join" label on the signup page */

.new_user label.text.required {
   font-size: 1.5em !important; 
   text-indent: -9999px;
}

.new_user label.text.required::after {
   content: "Answer me these questions three! \A * Required";
   text-indent: 0px;
   display: block;
}

/* Just the 3 questions hint under the label on the sign */

/* First hide the original text */
.new_user span.hint {
   text-decoration:none !important; 
   text-indent:-9999px
}

.simple_form.new_user span.hint::after {
   font-size: 1.2em !important;
   content: "What is your favorite color? \A What is your favorite number? \A How will AI change the way people interact with each other?"; 
   text-indent: 0; 
   display: block; 
   white-space: pre !important;
}




