I am trying to get Selenium to interact with a button on a website, but the button has no identifiers other than class (and I haven't gotten that working) and ng-click. How do I tell Selenium to locate the value at ng-click (or wherever), and then select it? Below is the code for the button when I inspect it:
Also: this button has a bunch of non-clickable items in it, I really just want to know how I can tell Selenium I want to click the button defined in the HTML code. Thank you! I'm working in Python. the button looks like this::

<div class="col-xs-6 iml-col-xs-12">
<div class="btn btn-create-account" ng-click="goToSSORedirectPage()">
<span>
<i class="fa fa-user">
::before
</i>
</span>
<small class="text-muted">HAVE A TULANE EMAIL ADDRESS </small>
"Member Login"
</div>
</div>