:root {
    --lightblue: #056BCC;
}

.login_page_container {
    height: 100vh;
}

.login_main {
    width: 1500px;
    height: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.login_rm_logo {
    content: url('../../new/img/reward_manager_logo_no_tagline.png');
}

#content #login {
    display: flex;
    justify-content: center;
    align-items: center;
}

#content .login_form_holder {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    top: auto;
    margin: 0;
    width: 315px;
}

.resolution_warning {
    display: none;
    border-left: 5px solid var(--lightblue);
    border-radius: 3px;
    padding: 10px;
    box-shadow: 0 8px 8px 0px rgba(0,0,0,.20);
}

.resolution_warning span{
    color: var(--lightblue);
}

.login-button {
    width: 315px;
    margin-top: 2rem;
}

.login_info_text, .legal-information-inner p {
    margin: 1rem 0;
    color: #666;
    line-height: 1.2rem;
}

.contact_holder {
    text-align: center;
}
.contact_holder a {
    text-decoration: none;
    font-weight: bold;
    color: var(--lightblue);
}

.login_illustration_left {
    height: 80%;
    background: url('../../new/img/login-new-bg-left.png') no-repeat;
    background-size: contain;
    background-position: left;
}

.login_illustration_right {
    height: 80%;
    background: url('../../new/img/login-new-bg-right.png') no-repeat;
    background-size: contain;
    background-position: right;
}

.a11y {
    overflow: hidden;
    height: 0;
    width: 0;
}

/*================ LEGAL INFO BANNER ================*/
.legal-information {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #f2f2f2;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.legal-information-inner {
    max-width: 50%;
}

/*================ MEDIA QUERIES ================*/

@media only screen and (max-width: 870px) {
    #wrapper, #content {
        overflow: hidden;
    }

    .login_main {
        width: 1100px;
    }

    .resolution_warning {
        display: grid;
        grid-template-columns: 1fr 9fr;
    }

    .legal-information-inner {
        max-width: 85%;
    }
}

@media only screen and (max-width: 360px) {
    .login_page_container {
        min-height: 740px;
    }

    .legal-information {
        height: 240px;
    }

    #content, #wrapper {
        overflow-y: scroll;
    }
}

@media only screen and (max-height: 630px) {
    .login_page_container {
        min-height: 630px;
    }

    .legal-information {
        height: 130px;
    }

    #wrapper {
        overflow-y: scroll;
    }
}