Not able to click on object in IE 11

Not able to click on Login button

Element is getting found but not able to click on following configuration
Katalon version: 7.0.8
IE version: 11.1184.17134.0

Also done with IE configuration and Desired configuration as given in link below
1.https://docs.katalon.com/katalon-studio/docs/internet-explorer-configurations.html
2.https://docs.katalon.com/katalon-studio/docs/desired-capabilities-for-internet-explorer.html

There is a work around : Use the Send Keys instead of Click.

Example:
WebUI.sendKeys(findTestObject(‘Test_Object’),Keys.chord(Keys.ENTER))

Try with this:
Check if object Element is present and then Send Keys on the object instead of Click on the object.