/* Login, Sign up */

.login--customized {
    user-select: none;
}

@media screen and (min-width: 768px) {
    .login--customized.login-with-news-feed {
        display: grid;
        grid-template-columns: 400px 1fr;
    }
}

@media screen and (min-width: 992px) {
    .login--customized.login-with-news-feed {
        display: grid;
        grid-template-columns: 450px 1fr;
    }
}

.login--customized .login-container {
    background: #1a2229;
    color: rgba(255, 255, 255, 0.87);
    padding: 40px 40px;
    height: 100vh;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    position: relative;
    z-index: 1020;
}

@media screen and (max-width: 639px) {
    .login--customized .login-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

@media screen and (min-width: 640px) {
    .login--customized .login-container {
        grid-area: 1 / 1 / 2 / 2;

        display: grid;
        grid-template-rows: 260px 1fr 50px;
        row-gap: 15px;
        padding: calc(15px * 2) 40px;
    }
}

.login--customized .login-header {
    grid-area: 1 / 1 / 2 / 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login--customized .company-info a {
    color: rgba(255, 255, 255, 0.87);
    text-decoration: none;
}

.login--customized .login-header .logo {
    height: 100px;
}

.login--customized .login-content {
    grid-area: 2 / 1 / 3 / 2;
}

@media screen and (max-width: 639px) {
    .login--customized .login-content {
        flex-direction: column;
        height: 100%;
        margin: 20px 0;
    }
}

.login--customized .login-footer {
    grid-area: 3 / 1 / 4 / 2;

    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 11px;
    width: 100%;
}

.login--customized .login-footer a {
    color: inherit;
    text-decoration: none;
}


.login--customized .news-feed {
    display: none;
}

@media screen and (min-width: 768px) {
    .login--customized .news-feed {
        grid-area: 1 / 2 / 2 / 3;

        display: flex;
        height: inherit;
        position: relative;
    }
}

.login--customized .news-feed-logo {
    height: 60px;

    position: absolute;
    z-index: 1010;
    top: 15px;
    right: 30px;
}

.login--customized .news-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    position: fixed;
}

.login--customized .news-caption {
    color: #FFF;
    max-width: 720px;
    min-width: 300px;
    padding: calc(15px * 2) 40px;

    position: absolute;
    left: 0;
    bottom: 0;

    user-select: text;
}

.login--customized .caption-title {
    color: #FFF;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: calc(15px / 1.5);
}

.login--customized .caption-icon {
    max-width: 80px;
}

.login--customized .caption-icon-title {
    color: #00B3C9;
    font-size: 28px;
    font-weight: 600;
}

.login--customized .caption-text {
    color: #FFF;
    font-size: 18px;
}

.checkbox.checkbox-css input:checked+label:before {
    background: #49b6d6;
    border-color: #49b6d6;
}