*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    font-family:Arial,sans-serif;
    overflow-x:hidden;
    overflow-y:auto;
}

/* =========================
   SPLASH SCREEN
========================= */

.splash-screen{
    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:
    radial-gradient(circle at center,
    #3d2a00 0%,
    #111111 40%,
    #000000 100%);
}

.logo-box{
    animation:zoomIn 1.5s ease;
}

.logo-img{
    max-width:450px;
    width:100%;
    filter:
    drop-shadow(0 0 10px #FFD700)
    drop-shadow(0 0 25px #FFD700);
}

.tagline{
    margin-top:20px;
    color:#FFD700;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
}

.progress{
    height:14px;
    border-radius:30px;
    overflow:hidden;
}

.loading-text{
    color:#FFD700;
    margin-top:15px;
    font-size:18px;
    font-weight:600;
    text-align:center;
}

#loadingPercent{
    display:block;
    font-size:28px;
    font-weight:700;
    color:#fff;
    margin-top:5px;
}

.version{
    position:absolute;
    bottom:20px;
    left:0;
    width:100%;
    text-align:center;
    color:#999;
}

.coin{
    position:absolute;
    width:60px;
    animation:fall linear infinite;
    z-index:1;
}

.coin1{
    left:5%;
    animation-duration:5s;
}

.coin2{
    left:25%;
    animation-duration:7s;
}

.coin3{
    left:45%;
    animation-duration:6s;
}

.coin4{
    left:70%;
    animation-duration:5s;
}

.coin5{
    left:90%;
    animation-duration:8s;
}

@keyframes fall{

    from{
        top:-100px;
        transform:rotate(0deg);
    }

    to{
        top:110%;
        transform:rotate(360deg);
    }

}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(.5);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* =========================
   LOGIN PAGE DARK THEME
========================= */

.login-wrapper{
    min-height:100vh;
}

.left-panel{
    background:#000;
    padding:0;
}

.banner-img{
    width:100%;
    height:100vh;
    object-fit:cover;
    display:block;
}

.right-panel{
    background:#050505;
    min-height:100vh;
}

.login-box{
    width:100%;
    max-width:450px;
    padding:40px;
}

.login-box h2{
    color:#FFD700;
    font-size:32px;
    font-weight:700;
    margin-bottom:5px;
}

.login-subtitle{
    color:#bbb;
    margin-bottom:30px;
}

.form-control{
    height:55px;
    background:#111;
    border:1px solid #2b2b2b;
    color:#fff;
    border-radius:10px;
}

.form-control::placeholder{
    color:#888;
}

.form-control:focus{
    background:#111;
    color:#fff;
    border-color:#FFD700;
    box-shadow:none;
}

.forgot-link{
    color:#FFD700;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.forgot-link:hover{
    color:#ffcc00;
}

.btn-login{
    height:55px;
    border:none;
    border-radius:10px;
    background:#FFD700;
    color:#000;
    font-size:16px;
    font-weight:700;
}

.btn-login:hover{
    background:#ffcc00;
    color:#000;
}

.divider{
    text-align:center;
    margin:25px 0;
    color:#888;
    position:relative;
}

.divider:before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    width:40%;
    height:1px;
    background:#333;
}

.divider:after{
    content:'';
    position:absolute;
    right:0;
    top:50%;
    width:40%;
    height:1px;
    background:#333;
}

.social-btn{
    height:50px;
    border-radius:10px;
    font-weight:600;
}

.btn-google{
    background:#111;
    border:1px solid #333;
    color:#fff;
}

.btn-facebook{
    background:#1877f2;
    color:#fff;
}

.register-text{
    text-align:center;
    margin-top:25px;
    color:#aaa;
}

.register-text a{
    color:#FFD700;
    text-decoration:none;
    font-weight:700;
}

.register-text a:hover{
    color:#ffcc00;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .login-wrapper{
        min-height:auto;
    }

    .left-panel{
        height:auto;
    }

    .banner-img{
        width:100%;
        height:auto;
        object-fit:cover;
    }

    .right-panel{
        min-height:auto;
        padding:20px 0;
    }

    .login-box{
        max-width:100%;
        padding:30px 20px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .logo-img{
        max-width:300px;
    }

    .coin{
        width:40px;
    }

    .tagline{
        font-size:14px;
    }

    .banner-img{
        width:100%;
        height:auto;
    }

    .login-box{
        padding:20px 15px;
    }

    .login-box h2{
        font-size:28px;
    }

}