body {
    font-size: 16px;
    line-height: 140%;
    font-family: Roboto, Arial;
}

#logo {
    text-align: center;
    margin: 0;
}

#logo img {
    width: 700px;
    height: 215px;
}

img {
    max-width: 100%;
}

h1, h2 {
    font-family: Roboto, Arial;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 140%;
}

h2 {
    font-size: 1.5rem;
}

.row {
    display: flex;
    justify-content: space-between;
}

.one-half {
    width: 45%;
}

.clearfix {
    clear: both;
}

#content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5% 5%;
}

#invite-form input {
    padding: 20px;
    width: 100%;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 1.25rem;
    font-family: Roboto, Arial;
    transition: 250ms ease-in-out all;
}

#invite-form .form-row {
    text-align: center;
}

#invite-form input:focus {
    border: 1px solid #444;
    outline: none;
    box-shadow: none;
}

#invite-form {
    margin-top: 8%;
}

#invite-form button {
    display: block;
    background: #d0122b;
    box-shadow: none;
    outline: none !important;
    border: none !important;
    color: #fff;
    font-size: 1rem;
    font-family: Roboto, Arial;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    cursor: pointer;
    transition: 250ms ease-in-out all;
    text-transform: uppercase;
}

#invite-form button:hover {
    background: #9D0000;
}

#invite-form .form-actions {
    margin-top: 4%;
}

#mobile-link {
    display: none;
    text-align: center;
}

#mobile-link a {
    color: #d0122b;
    text-decoration: none;
}

#mobile-link a:hover {
    color: #9D0000;
}

.login-link {
    font-size: 14px;
}

.login-link a {
    color: #d0122b;
    text-decoration: none;
}

.login-link a:hover {
    color: #9D0000;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .row {
        display: block;
    }

    .one-half {
        width: auto;
    }

    .one-half:last-of-type {
        margin-top: 35px;
    }

    #mobile-link {
        display: block;
    }

    #logo img {
        width: auto;
        height: auto;
    }
}