﻿html {
    background-color: #fafbfb;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

.login-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}

.login-page .ie-tips {
    display: none;
    flex: 0 0 auto;
    height: 3rem;
    color: #fff;
    background-color: #5b9bd5;
}

.login-page .container-wrapper {
    display: flex;
    flex: 1;
    height: 100%;
    max-height: 100%;
    background-image: url(../../images/Account/Login/background.png);
    background-position-x: center;
    background-repeat: repeat-x;
}

.login-page .container-wrapper .content-panel {
    flex: 0 0 auto;
    width: 36%;
    min-width: 500px;
    max-width: 700px;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

#switchLanguage {
    position: absolute;
    right: 1.2rem;
    top: 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #58b1ce;
}

#switchLanguage:hover {
    color: #ffffff;
}

.login-page .container-wrapper .content-panel .switchLanguageHidden {
    display: none;
}

.login-page .container-wrapper .content-panel .top-container {
    flex: auto;
    width: 100%;
    padding-top: 2.8rem;
    display: flex;
    flex-direction: column;
}

.login-page .container-wrapper .content-panel .top-container .title-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 240px;
    margin-bottom: 40px;
}

.login-page .container-wrapper .content-panel .top-container .title-logo .logo {
    display: block;
    height: auto;
}

.login-page .container-wrapper .content-panel .top-container .title-logo h1 {
    margin-top: 10px;
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.login-page .container-wrapper .content-panel .top-container .content-container {
    margin-top: 4px;
}

.login-page .container-wrapper .content-panel .copy-right {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.login-page .container-wrapper .content-panel .copy-right > span {
    height: 17px;
    font-weight: 400;
    color: #aaaaaa;
    line-height: 17px;
    margin-bottom: 0.2rem;
}

input[type=password]::-ms-reveal {
    display: none;
}

@media screen and (max-width: 768px) {
    .login-page {
        min-height: 100%;
        height: auto;
        flex: 1;
    }

    .login-page .container-wrapper {
        background-image: url(../../images/Account/Login/background-mobile.png);
        background-size: 100% 250px;
        background-repeat: no-repeat;
    }

    .login-page .container-wrapper .content-panel {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }

    .login-page .container-wrapper .content-panel .top-container .title-logo {
        height: 180px;
        margin-bottom: 40px;
    }

    .login-page .container-wrapper .content-panel .top-container .title-logo .logo {
        width: 160px;
    }

    .login-page .container-wrapper .content-panel .top-container .title-logo > h1 {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 0.5rem;
    }

    .login-page .container-wrapper .content-panel .copy-right {
        font-size: 0.8rem;
    }
}
