* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin:0;
    padding:0;
}
body {
    line-height: unset;
}
a{
    text-decoration: none;
}
.container {
    position: relative;
    width: 50vw;
    height: 100vh;
    margin:0 0 0 0;
    overflow: hidden;
    z-index: 1;
}
.backdrop {
    background-color: white;
}
.foreground {
    position: absolute;
    left: 50vw;
    top: 0vh;
    width: 50vw;
    height: 100vh;
    z-index: 2;
}
#sabiclogo {
    position: absolute;
    right: 60px;
    top: 35px;
    width: 12vw;
    min-width: 180px;
}
#tmslogo {
    position: absolute;
    top: 30vh;
    width: 40vw;
    left: 5vw;
}
#background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50vw;
}
#ooclllogo {
    position: absolute;
    right: 35px;
    bottom: 30px;
}
h2 {
    color: rgba(00, 36, 97, 1);
    font-size: 30px;
}
.languageButton {
    z-index: 2;
    font-size: 16px;
    height: 3vw;
    max-height: 40px;
    width: 15vw;
    max-width: 200px;
    top: 50vh;
    position: absolute;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 1px;
    background-color: #009fdf;
    text-align: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px 0 #77777777;
}
#zhLoginButton {
    left: calc(25vw - 100px);
}
#enLoginButton {
    left: 27vw;
}
.loginPanel {
    position: absolute;
    right: calc(25vw - 200px);
    top: 40vh;
    width: 400px;
    z-index: 3;
    display: none;
    border: 3px solid #009fdf;
    background-color: white;
}
.loginPanel td {
    padding: 0 30px 10px;
}
.loginForm {
    width: 100%;
}
.loginInput {
    width: 95%;
    height: 40px;
    color: #A3A3A3;
    background-color: #D7D7D7;
    border: 0;
    margin: 0;
    padding: 5px;
    font-size: 19px;
}
.captchaInput {
    width: 50%;
    height: 40px;
    color: #A3A3A3;
    background-color: #D7D7D7;
    border: 0;
    margin: 0;
    padding: 5px;
    font-size: 19px;
    float: left;
}
.captchaImg {
    height: 40px;
    border: 0;
    margin: 0;
    padding: 5px;
    float: right;
    cursor:pointer;
    vertical-align:middle;
}
#msg {
    padding:5px;
}
.errorMessage {
    color: #d44135;
    background-color: #ffffff;
    padding: 0;
    text-align: center;
    font-size: 19px;
}
.submitButton {
    width: 100%;
    height: 80px;
    text-align: center;
    border: 0;
    border-radius: 0;
    color: white;
    background: #009fdf;
    cursor: pointer;
    margin: 0;
}
.languageButton:focus, .submitButton:focus, .loginInput:focus {
    outline: 0
}
#privacyPolicy {
    text-align: center;
}


ul {
    display: inline;
    list-style-type: none;
    position: relative;
}
#slider li {
    position: absolute;
    left: 50vw;
    float: right;
}

#slider li img {
    width: 50vw;
    height: calc(100vw/1920*1080);
    min-height: 100vh;
}

#slider li {
    z-index: -1;
    animation: cycle 25s linear infinite;
}

#slider li:nth-child(1) {
    animation: cyclefirst 25s linear infinite;
}
#slider li:nth-child(2) {
    animation-delay: 0s;
}
#slider li:nth-child(3) {
    animation-delay: 5s;
}
#slider li:nth-child(4) {
    animation-delay: 10s;
}
#slider li:nth-child(5) {
    animation-delay: 15s;
}

/* ANIMATION */
@keyframes cyclefirst {
    0% {left : 0; z-index: auto}
    18% {left : 0; z-index: auto}
    20% {left: -50vw; z-index: auto}
    21% {left: -50vw; z-index: -1}
    97% {left: 50vw; z-index: -1}
    98% {left: 50vw; z-index: auto}
    100% {left : 0; z-index: auto}
}
@keyframes cycle {
    0% {left : 50vw; z-index: -1}
    18% {left : 50vw; z-index: auto}
    20% {left: 0; z-index: auto}
    38% {left: 0; z-index: auto}
    40% {left: -50vw; z-index: auto}
    41% {left: -50vw; z-index: -1}
    100% {left : 50vw; z-index: -1}
}