﻿/* Your Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 10px;
}

html,
body {
    position: relative;
    width: 100%;
    height: 100%;
}

button {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
}

.login-view {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/login-bg.jpg") no-repeat !important;
    background-size: 100% 100% !important;
    padding: 5rem 0 15rem 0;
}

.login-xy-view {
    background: url("../images/login-xy-bg.jpg") no-repeat !important;
    background-size: 100% 100% !important;
}

.login-content {
    flex: initial;
    width: 54vw;
    background: transparent;
    padding: 0 !important;
    transform: scale(1.15);
}

.login-module {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    top: -1rem;
    z-index: 10;
    overflow: hidden;
    width: 100%;
    background: #fff url("../images/login-mod-bg.jpg") no-repeat;
    background-size: 100% auto;
    background-position: bottom right;
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(77, 125, 234, .54);
    margin-bottom: 0;
    padding: 5rem;
}

.login-xy-view .login-module {
    background: #fff url("../images/login-xy-mod-bg.jpg") no-repeat;
    background-size: 100% auto;
    background-position: bottom right;
    box-shadow: 0 4px 18px rgba(151, 198, 191, .64);
}

.shadow-one {
    position: absolute;
    left: 3rem;
    right: 3rem;
    bottom: -1rem;
    z-index: 9;
    height: 7rem;
    background: rgba(255, 255, 255, .3);
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(77, 125, 234, .54);
}

.shadow-two {
    position: absolute;
    left: 5rem;
    right: 5rem;
    bottom: -3rem;
    z-index: 8;
    height: 7rem;
    background: rgba(255, 255, 255, .3);
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(77, 125, 234, .54);
}

.login-xy-view .shadow-one,
.login-xy-view .shadow-two {
    box-shadow: 0 4px 18px rgba(151, 198, 191, .64);
}

.login-content-left {
    width: 23vw;
    min-width: 23vw;
    /* height: calc(100% - 10rem); */
    border-right: solid 1px #b4cfff;
    padding-right: 2.5vw;
}

.login-xy-view .login-content-left {
    border-right: solid 1px #9af1e4;
}

.login-content-left h4 {
    margin-bottom: 2rem;
    font-size: 3.2rem;
    font-weight: 500;
    color: #333;
}

.login-content-left .mt-4 .mb-3 {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
}

.login-content-left .mt-4 label {
    padding-bottom: 1vw;
    font-size: 1.8rem;
    color: #686b6e;
}

.login-content-left .mt-4 .input-group {
    position: relative;
    width: 100%;
    height: 5rem;
}

.login-content-left .mt-4 .form-control,
.login-content-left .mt-4 .form-select {
    width: 100%;
    height: 5rem;
    background-color: #f8fbff;
    border-radius: 0.5rem;
    border: solid 1px #b4cfff;
    padding: 0 1.5rem;
    outline: none;
    font-size: 1.8rem;
}

.login-xy-view .login-content-left .mt-4 .form-control,
.login-xy-view .login-content-left .mt-4 .form-select {
    border-color: #9af1e4;
}

.login-content-left .mt-4 a {
    font-size: 1rem;
    color: #4d7de9;
    text-decoration: none;
}

.login-xy-view .login-content-left .mt-4 a {
    color: #3cc3af;
}


.login-content-left .mt-4 .input-group .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 4vw;
    background-color: #457bf1;
    border-color: #457bf1;
    border-radius: 0.3rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.login-content-left .mt-4 .input-group .btn-secondary svg {
    height: 60%;
}

.login-content-left .mt-4 .input-group .btn-secondary .icon-eyes-show {
    display: none;
}

.login-xy-view .login-content-left .mt-4 .input-group .btn-secondary {
    background-color: #3cc3af;
    border-color: #3cc3af;
}

.login-content-left .mt-4 .form-check-input {
    position: relative;
    top: 0.1rem;
    background-color: #f8fbff;
    border-color: #b4cfff !important;
    border-width: 1px;
}

.login-content-left .mt-4 .form-check-input:checked[type=checkbox] {
    background-color: #457bf1;
}

.login-xy-view .login-content-left .mt-4 .form-check-input {
    border-color: #9af1e4 !important;
}

.login-xy-view .login-content-left .mt-4 .form-check-input:checked[type=checkbox] {
    background-color: #3cc3af;
}

.login-content-left .mt-4 .btn-primary {
    width: 100%;
    height: 5.5rem;
    border-radius: 0.5rem;
    margin-top: 3rem !important;
    font-size: 1.6rem;
    font-weight: 400;
}

.login-xy-view .login-content-left .mt-4 .btn-primary {
    border-color: #3cc3af;
    background-color: #3cc3af;
}

.login-content-right {
    width: 100%;
    height: 100%;
    padding-left: 2.5vw;
    color: #457bf1;
}

.login-xy-view .login-content-right {
    color: #3cc3af;
}

.login-content-right dt {
    margin-bottom: 2rem;
    font-size: 3.2rem;
    font-weight: 500;
}

.login-content-right dd {
    padding-bottom: 1.8rem;
    font-size: 1.8rem;
}

.filings-info-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 15rem;
}

.filings-info-list li {
    padding: 0.5rem 0;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 0.1rem;
}

.language-view {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    top: 20px;
    right: 35px;
    overflow: hidden;
    z-index: 5;
    min-width: 28px;
    min-height: 28px;
}

.language-icon {
    display: block;
    width: 28px;
    height: 28px;
    min-height: 28px;
    cursor: pointer;
}

.language-view[data-language="zh-CN"] .language-icon {
    background: url(../img/cn_icon.png) no-repeat center / 100% auto;
}

.language-view[data-language="zh-TW"] .language-icon {
    background: url(../img/hk_icon.png) no-repeat center / 100% auto;
}

.language-view[data-language="en-US"] .language-icon {
    background: url(../img/en_icon.png) no-repeat center / 100% auto;
}

.language-content {
    display: none;
    position: relative;
    width: 100px;
    margin: 5px 0 0 0;
}

.language-view:hover .language-content {
    display: block;
}

/*.language-content .zzc {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}*/

.language-list {
    position: relative;
    overflow: hidden;
    z-index: 2;
    background: #fff;
    border-radius: 5px;
}

.language-list li {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.language-view[data-language="zh-CN"] .language-list li[data-language="zh-CN"],
.language-view[data-language="zh-TW"] .language-list li[data-language="zh-TW"],
.language-view[data-language="en-US"] .language-list li[data-language="en-US"] {
    color: #457bf1;
}

.language-list li:hover {
    background: #ecf2ff;
}

@media screen and (max-width: 1376px) {
    .login-content {
        width: 64vw;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}