based on what you added here:
<button type="submit" aria-label="Login button" class="btn btn-large p-x-2 btn-inverse" disabled="">Log In</button>
This disabled attribute is causing issues because it makes the element, you guessed it, disabled! see - https://www.w3schools.com/tags/att_disabled.asp
If you remove that so it looks like this:
<button type="submit" aria-label="Login button" class="btn btn-large p-x-2 btn-inverse">Log In</button>
then you could use the below and it will work fine.
//button[text()='Log In']
Is there another login button that is not disabled?