body {
    padding: 2em;
}

/* Shared */
.loginBtn {
    box-sizing: border-box;
    position: relative;
    left: 17%;
    padding: 0 25px 0 66px;
    border: none;
    text-align: left;
    line-height: 55px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #FFF;
}

    .loginBtn:before {
        content: "";
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
        width: 55px;
        height: 100%;
    }

    .loginBtn:focus {
        outline: none;
    }

    .loginBtn:active {
        box-shadow: inset 0 0 0 32px rgba(0,0,0,0.1);
    }

/* Google */
.loginBtn-google {
    font-family: "Roboto", Roboto, arial, sans-serif;
    background: #0d4d84;
}

    .loginBtn-google:before {
        border-right: #BB3F30 1px solid;
        background: url('/img/GoogleG.png') 2px 2px no-repeat;
    }

    .loginBtn-google:hover,
    .loginBtn-google:focus {
        background: #E74B37;
    }

.strike {
    display: block;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    color: #0d4d84;
    font-family: "Roboto", Roboto Condensed, arial, sans-serif;
    font-size: 35px;
    width: 80%;
    margin-left: 8%;
}

    .strike > span {
        position: relative;
        display: inline-block;
    }

        .strike > span:before,
        .strike > span:after {
            content: "";
            position: absolute;
            top: 50%;
            width: 9999px;
            height: 1px;
            background: #0d4d84;
        }

        .strike > span:before {
            right: 100%;
            margin-right: 15px;
        }

        .strike > span:after {
            left: 100%;
            margin-left: 15px;
        }