body, html{
    background-color: #fff;
    min-width: 300px;
    font-size:13px
}
/* html{
    zoom: 90%;
} */
.row{                
    margin: 0px;
    display:flex;
}
.img-container{
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.img-slide{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    *margin-left: 100px;
    *margin-top: 60px;  
}
.outer-container{
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    height:100%
}
.right-container{
    position: relative;
    z-index: 1;
    width: 140%;
    background-color: aliceblue;
    padding:0
}
.login-container{
    padding: 5px 25px;
}
.logo-login{
    margin-top: 10px;
}
.subtext-login{
    font-size: 25px;
    color : #313131;
    *margin-top: 30px;
}
.login-form {
    *margin-top: 45px;
    color: #313131;
}
.login-form .btn-login{
    width: 100%;
    background-color: #00a0bc;
    color: #fff;
    font-size: 16px;
    padding: 8px;
    cursor: pointer;
    height: 40px;
}
.forgot-link a{
    color: #242c65;
}
.footer-login{
    margin-top: 90px;
    color:#8c8c8c;
    font-size: 12px;
}
.alert-blue {
    border-left: 4px solid #c60b18;
    background: #fffbf2;
    display: table;
    width: 100%;
}
@media (max-width: 980px){
    .logo-login{
        *margin-top: 40px;
    }
    .subtext-login{
        *margin-top: 25px;
    }
    .login-form {
        *margin-top: 25px;
    }
    .footer-login{
        margin-top: 100px;
    }            
}
@media (max-width: 800px){
    .login-container{
        padding: 25px 25px;
    }                
    .right-container{
        display: none;
    }
    .row{
        display: block;
    }
}
.forgot-link .link{
    color: #ad1e3d;
    border:none;
    background:unset
}
.daftar {
    color: #ad1e3d;
    float: left;
    margin-top: 35px;
}
.btn-daftar{
    margin-top: 27px;
    width: 50%;
    background-color: #232c65;
    color: #fff;
    font-size: 16px;
    padding: 6px;
    cursor: pointer;
    height: 38px;
    float: right;
}
.btn-daftar:hover{
    color: #fff;
}
.open-button {
    background-color: #8224db;
    color: white;
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    opacity: 0.9;
    position: fixed;
    bottom: 23px;
    right: 30px;
    z-index: 1;
    border-radius: 10px;
    width: 150px;
}
.open-button:hover{
    opacity: 1;
}
.panel-head {
    padding: 15px;
    background: #23a0bc;
    color: #fff;
}
.panel-head .title{
    font-size:20px
}
.container-popup {
    display: none;
    position: relative;
}
.asterisk{
    position: relative; 
}
.asterisk:after {
    content: "*";
    color: #ca173f;
    font-size: 15px;
    position: absolute;
    top: -3px;
}
.chat-popup {
    /* position: fixed; */
    /* bottom: 75px; */
    /* right: 30px; */
    /* z-index: 9; */
    /* border-radius: 10px; */
    /* background-color: white; */
    /* width: 500px; */
    /* box-shadow: 2px 2px 8px 2px #ddd; */
    max-width: 500px;
}
.chat-popup .col-md-6,
.chat-popup .col-md-12{
    width: 100%;
}
.chat-popup .cancel {
    background-color: red;
}
.chat-popup .open-button:hover {
    opacity: 1;
}
.chat-popup .btn{
    width: 100%
}
.password-button {
    cursor: pointer;
    background: unset
}
.password-button:hover,
.password-button:focus{
    background: #f1f1f1
}
.error{
    color: #c9302c;
}
.loader{
    width: 100%;
    text-align: center;
    padding: 10px;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.36);
    height: 100%
}
.carousel{
    height:100%
}
.carousel .carousel-inner{
    height:100%
}
.carousel .item{
    height:100%
}
.carousel .img-slide{
    position: unset;
    height: 100% !important;
    object-fit: cover;
    object-position: 0% 0%
}
#hideMe {
    -moz-animation: cssAnimation 0s ease-in 3s forwards;
    /* Firefox */
    -webkit-animation: cssAnimation 0s ease-in 3s forwards;
    /* Safari and Chrome */
    -o-animation: cssAnimation 0s ease-in 3s forwards;
    /* Opera */
    animation: cssAnimation 0s ease-in 3s forwards;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        opacity : 0;
        padding: 0px;
        margin: 0px;
        overflow:hidden;
    }
}
@-webkit-keyframes cssAnimation {
    to {
        width:0;
        height:0;
        opacity : 0;
        padding: 0px;
        margin: 0px;
        visibility:hidden;
    }
}