.container:after {
    content: "";
    display: table;
    clear: both;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #373737;
}

.fa {
    display: inline-block;
    background-repeat: no-repeat;
}

.fa-eye {
    -webkit-mask: url(images/eye.svg) no-repeat 100% 100%;
    mask: url(images/eye.svg) no-repeat 100% 100%;
}

.fa-eye-slash {
    -webkit-mask: url(images/eye-slash.svg) no-repeat 100% 100%;
    mask: url(images/eye-slash.svg) no-repeat 100% 100%;
}

.fa-arrow-right {
    -webkit-mask: url(images/arrow-right.svg) no-repeat 100% 100%;
    mask: url(images/arrow-right.svg) no-repeat 100% 100%;
}

.fa-arrow-left {
    -webkit-mask: url(images/arrow-left.svg) no-repeat 100% 100%;
    mask: url(images/arrow-left.svg) no-repeat 100% 100%;
}

.button-primary {
    background-color: #00960a;
    color: #FFFFFF;
    border: none;
    border-radius: 2px;
    height: 36px;
    line-height: 36px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    padding: 0 10px;
}

    .button-primary:hover {
        background-color: #00960a;
    }

.login-page-left-side-login-form input[type=submit] {
    width: 100%;
    margin-top: 10px;
}

.login-page-container {
    display: flex;
}

.login-page-left-side {
    background: #ffffff;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 4px 4px 10px 2px rgba(0,0,0,0.21);
    -moz-box-shadow: 4px 4px 10px 2px rgba(0,0,0,0.21);
    box-shadow: 4px 4px 10px 2px rgba(0,0,0,0.21);
    z-index: 1;
}


@media screen and (max-width:1200px) {
    .login-page-left-side {
        width: 100%;
    }

    .login-page-right-side {
        display: none;
    }
}


/************** 
Left side of login page
**************/

.login-page-left-side-logo img {
    max-width: 200px;
}

.login-page-left-side-logo {
    padding-top: 40px;
    position: absolute;
    top: 0;
}

.login-page-left-side-login-form {
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
}

    .login-page-left-side-login-form h2 {
        font-size: 28px;
        text-align: center;
        margin: 10px 0 40px 0;
    }

    .login-page-left-side-login-form p {
        font-size: 16px;
        text-align: center;
        color: #AEAEAE;
        margin: 0;
    }

    .login-page-left-side-login-form label {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        padding-bottom: 5px;
        font-weight: 600;
    }

    .login-page-left-side-login-form input[type=text],
    .login-page-left-side-login-form input[type=password] {
        height: 36px;
        border: 1px solid #e4e4e4;
        border-radius: 2px;
        width: 100%;
        padding: 10px;
        font-size: 14px;
        color: #373737;
        box-sizing: border-box;
    }

    .login-page-left-side-login-form input.password {
        padding-right: 35px;
    }

    .login-page-left-side-login-form .password-wrapper {
        position: relative;
    }

    .login-page-left-side-login-form .fa {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        cursor: pointer;
        width: 18px;
        height: 14px;
        background-color: #E4E4E4;
    }

    .login-page-left-side-login-form .reset-password-wrapper {
        text-align: right;
        margin-top: 10px;
    }

        .login-page-left-side-login-form .reset-password-wrapper a,
        .login-page-left-side-login-form .reset-password-wrapper a:visited,
        .login-page-left-side-login-form .reset-password-wrapper a:active {
            font-size: 12px;
            color: #3366BB;
            text-decoration: none;
        }

.login-page-left-side-login-form-separator {
    margin: 20px 0;
    border-top: 1px solid #E4E4E4;
    position: relative;
}

    .login-page-left-side-login-form-separator span {
        position: absolute;
        display: inline-block;
        left: 50%;
        top: -20px;
        transform: translateX(-50%) translateY(50%);
        background: #FFFFFF;
        padding: 0 5px;
        color: #999999;
        font-size: 16px;
    }

.login-page-left-side-login-form-google,
.login-page-left-side-login-form-microsoft {
    position: relative;
    cursor: pointer;
    text-align: center;
    color: #797979;
    font-size: 14px;
    font-weight: 600;
    line-height: 36px;
    height: 36px;
    vertical-align: central;
    border: 1px solid #E4E4E4;
    background-size: 16px auto;
    background-repeat: no-repeat;
    background-position-x: 15px;
    background-position-y: center;
}

    .login-page-left-side-login-form-google::after,
    .login-page-left-side-login-form-microsoft::after {
        position: absolute;
        left: 46px;
        top: 0;
        bottom: 0;
        border-right: 1px solid #E4E4E4;
        content: "";
    }

.login-page-left-side-login-form-google {
    background-image: url(images/google_logo.svg);
}

.login-page-left-side-login-form-microsoft {
    margin-top: 10px;
    background-image: url(images/microsoft_logo.svg);
}

.login-page-left-side-copyright {
    position: absolute;
    padding: 10px 0 40px 0;
    bottom: 0;
    font-size: 14px;
    color: #383838;
}

    .login-page-left-side-copyright a,
    .login-page-left-side-copyright a:visited,
    .login-page-left-side-copyright a:active {
        font-size: 14px;
        color: #3366BB;
        text-decoration: none;
    }

.login-page-left-side-browser-warning {
    max-width: 400px;
    width: 100%;
    padding: 100px 20px;
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border: 1px solid #ED1C24;
    text-align: center;
}

    .login-page-left-side-browser-warning a {
        background-color: #d10a60;
        color: #ffffff;
        border-radius: 2px;
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 500;
        transition: 0.2s;
        padding: 8px 16px;
        text-decoration: none;
        display: inline-block;
    }

        .login-page-left-side-browser-warning a:hover {
            background-color: #B70954;
        }

    .login-page-left-side-browser-warning i {
        color: #ffcc00;
        font-size: 30px;
    }
/************** 
Right side of login page
**************/

.login-page-right-side-image {
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    background-image: url(images/bg_right_image_1.png);
}

.login-page-right-side-news {
    padding: 30px 40px;
}

.login-page-right-side-news-item-wrapper {
    background: rgba(66, 66, 66, 0.6);
    padding: 25px 20px;
    color: #FFFFFF;
    font-size: 16px;
}

.login-page-right-side-news-item {
    display: none;
}

    .login-page-right-side-news-item.active {
        display: block;
    }

.login-page-right-side-news-item-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.login-page-right-side-news-item-buttons {
    margin-top: 20px;
}

    .login-page-right-side-news-item-buttons .button-primary,
    .login-page-right-side-news-item-buttons .button-primary:visited,
    .login-page-right-side-news-item-buttons .button-primary:active {
        color: #FFFFFF;
        text-decoration: none;
        display: inline-block;
    }

.login-page-right-side-news-buttons {
    position: relative;
}

    .login-page-right-side-news-buttons .navigation-buttons {
        position: absolute;
        top: -35px;
        right: 0;
    }

    .login-page-right-side-news-buttons .fa {
        margin: 9px 10px;
        cursor: pointer;
        width: 22px;
        height: 18px;
        background-color: #FFFFFF;
    }

.login-page-right-side-news-progress-bar {
    width: 0;
    height: 3px;
    background: #D10A60;
    transform: translateY(-100%);
}

.forgot-password {
    font-size: 13px;
    color: #797979;
    padding-top: 50px;
    padding-bottom: 20px;
    display: block;
    text-align: center;
    text-decoration: none;
}

    .forgot-password:hover {
        color: #3366BB;
    }
