#loginParent {
}

#loginForm {
    display: table;
    width: 100%;
}

    .loginParagraph {
        display: table-row;
        width: 100%;
    }

        .login-cell {
            display: table-cell;
            padding: 1em;
            width: 43%;
        }

        .login-cell:nth-child(2) {
            text-align: center;
            width: 14%;
        }

        .login-cell:first-child {
            text-align: right;
        }

        .login-cell:last-child {
        }

            input[type=text].loginFormTextInput, input[type=password].loginFormTextInput {
                width: 200px;
            }

            #loginButton {
                text-align: center;
                height: 30px;
                width: 60px;
                cursor: pointer;
                -moz-border-radius: 0;
                -webkit-border-radius: 0;
                border-radius: 0;
                text-transform: capitalize;
                background-color: white;
                border: solid 1px black;
            }

    .loginParagraph:last-child {
        width: 100%;
    }