The object that the standard cursor is being applied is not the base input field. It's a wrapper in the DOM. The input element has a cursor: text property
You can use this class to target the input field inside of the input component.
Add the following to the advanced style sheet, then add the class pointer to the input field.
.psc-pointer *{
cursor: pointer !important;
}
