You need to chain the various selectors together:
#modlgn-remember.fusion-module.rt-center
This searches for an element of id="modlgn-remember with a class of fusion-module and rt-center.
Spaces within a CSS selector implies a descendant element, so your original selector (.fusion-module rt-center #modlgn-remember) looks for an element of id="modlgn-remember" that's within a rt-centerelement, that's within an element of class="modlgn-remember".
Obviously, then, your original selector was unlikely to return the element you were looking for.
Remember, of course, that an id is unique within the document; therefore if you only want to get the element of that particular id you need only use the id. The only reason it makes sense to couple an id selector with a class-selector is to select that id only if it also has those classes. This is often useful in JavaScript, especially.