@import url('https://fonts.googleapis.com/css?family=Hind:400,600&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --dmt-D: #ee3a3c;
    --dmt-M: #f9aa29;
    --dmt-T: #4ab95e;
    --bg: #fff;
    --fg: #17181c;
    --color: #00b3a1;
}
/*--------------------------------------------------------------
# Dark Mode Theme
--------------------------------------------------------------*/
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #17181c;
        --fg: #e3e4e8;
    }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    overflow: hidden;
    background: var(--bg);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmt_D, .dmt_M, .dmt_T {
    border-radius: 50%;
    width: 1em;
    height: 1em;
    transform-origin: 50% 100%;
    animation: dmtBounce 1s linear infinite;
    font-size: 24px;
    line-height: 0;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    margin: 0px 10px;
}

.dmt_D {
    background: var(--dmt-D);
}

.dmt_M {
    background: var(--dmt-M);
    animation-delay: 0.1s;
}

.dmt_T {
    background: var(--dmt-T);
    animation-delay: 0.2s;
}

/* Animations */
@keyframes dmtBounce {
    from, to {
        transform: translateY(0) scale(1, 1);
        animation-timing-function: ease-in;
    }

    45% {
        transform: translateY(5em) scale(1, 1);
        animation-timing-function: linear;
    }

    50% {
        transform: translateY(5em) scale(1.5, 0.5);
        animation-timing-function: linear;
    }

    55% {
        transform: translateY(5em) scale(1, 1);
        animation-timing-function: ease-out;
    }
}

body {
    position: relative;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    padding: 0px;
    margin: 0px;
    font-family: 'Hind', sans-serif;
}

    body::-webkit-scrollbar, body::-webkit-scrollbar-thumb, body::-webkit-scrollbar-track {
        display: none;
    }

::-moz-selection {
    background: var(--color);
    color: #fff
}

::-webkit-selection {
    background: var(--color);
    color: #fff
}

::-o-selection {
    background: var(--color);
    color: #fff
}

::-ms-selection {
    background: var(--color);
    color: #fff
}

::selection {
    background: var(--color);
    color: #fff
}


/*############################## CAPTCHA ##############################*/


    .captchaSection .cptchaImg {
        background-color: transparent !important;
    }

   

/* ############################################################################### */
/* ############################################################################### */

.wrapper{
    max-width:1200px;
    margin:0 auto;

}
.logo-wrap{
    padding:10px 0;
}
.login-wrap{
    display:flex;
   
    align-items:center;
    justify-content:space-evenly;
   
}
    .login-wrap .login-left {
        z-index: 1;
        background: #fff;
        width:400px;
        padding:10px;
       
        border-radius: 15px;
    }
    .login-wrap .login-left h2 {
        color: #313131;
        font-weight: 700;
        text-align:center;
    }
    .login-wrap .login-left p {
        color: #313131;
        opacity:70%;
        font-size:16px;
        text-align:center;  
        
    }
    .login-wrap .login-left .input-wrap{
        width:100%;
        margin:auto;
        position:relative;
        margin-bottom:20px;
    }
        .login-wrap .login-left .input-wrap .inputbox {
            width: 100%;
            height: 50px;
            letter-spacing:2px;
            padding-left: 10px;
        }
        .login-wrap .login-left .input-wrap .captchaInput {
            width: 100%;
            height: 50px;
           
            text-align:center;
            letter-spacing:15px;
        }
        .login-wrap .login-left .input-wrap .captcha{
            letter-spacing:15px;
        }
        .login-wrap .login-left .input-wrap .input-label {
            position: absolute;
            top: 14px;
            left: 0px;
            padding-left: 10px;
            font-size:14px;
            padding:0px 2px;
        }


        .login-wrap .login-left .input-wrap .inputbox:focus + .input-label,
        .login-wrap .login-left .input-wrap .inputbox:not(:placeholder-shown) + .input-label {
            position: absolute;
            top: -11px;
            left: 10px;
           
            background: #fff;
        }
    .login-wrap .login-left .captchaWrap {
        width: 100%;
        margin:auto;
        position: relative;
        margin-bottom: 20px;
    }
        .login-wrap .login-left .captchaWrap .input-wrap {
            width: 100%;
            position: relative;
            margin-bottom: 20px;
        }
        .login-wrap .login-left .captchaWrap .captchaSection{
            width:100%;
           
            display:flex;
            justify-content:center;
            gap:10px;
        }
    .login-wrap .login-left .login-btn {
        background: #710055;
        color:#fff;
        padding:10px;
        border:none;
        border-radius:5px;
    }
    .login-wrap .login-right img{
        width:60%;
        height:auto;
        margin:auto;
    }

    .login-wrap .login-left .state{
        position:absolute;
        right:10px;
        top:15px;
        cursor:pointer;
    }

    @media (max-width:575px) {
        .login-wrap {
            display: flex;
            padding: 10px 0;
            align-items: center;
            justify-content: space-evenly;
            flex-direction:column;
        }
            .login-wrap .login-left {
                width: 100%;
                text-align: center;
            }

            .login-wrap .login-right {
                display:none;
            }
            .login-wrap .login-left h2 {
                color: #313131;
                font-weight: 700;
                font-size: 20px;
            }
                .login-wrap .login-left p {
                color: #313131;
                opacity: 70%;
                font-size: 13px;
            }
            .login-wrap .login-left .input-wrap {
                width: 100%;
                margin: auto;
                position: relative;
                margin-bottom: 20px;
            }
            .login-wrap .login-left .captchaWrap {
                width: 100%;
                margin: auto;
                position: relative;
                margin-bottom: 20px;
            }
    }


/* ############################################################################### */
/* ############################################################################### */

.shutter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    /*border-radius: 15px;*/
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
}

    .shutter .flexing-1,
    .shutter .flexing-2 {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .shutter .flexing-1 {
        z-index: 1;
        background: #fff;
        padding: 20px 0px; /* change*/
        border: 4px solid #f9aa29;
        border-left: 4px solid #ee3a3c;
        border-right: 4px solid #ee3a3c;
        border-radius: 15px;
    }

        .shutter .flexing-1::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            content: '';
            background-size: contain;
            opacity: 0.3;
            z-index: 0;
        }

        .shutter .flexing-1::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-image: url('../img/flag.webp');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            opacity: 0.3;
            z-index: 0;
        }

    .shutter .flexing-2 {
        flex: 2;
    }

        .shutter .flexing-2::before {
            position: absolute;
            top: 0px;
            bottom: 0px;
            right: 0px;
            left: 0px;
            content: '';
            background: linear-gradient(to right, #e0477d, #1bc2ff);
            opacity: 0.9;
        }


.fullscreen-banner {
    position: relative;
    overflow: hidden;
    height: 88vh;
    background-position: center center;
    background-image: url(../img/newBg.png); /* change*/
    background-position: right;
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

    .fullscreen-banner::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        opacity: 0.00;
        background: #000000;
        pointer-events: none;
    }

.animatedBackground {
    --animate-config: animatedBackground 100s linear infinite;
    background-repeat: repeat !important;
    background-size: auto !important;
    animation: var(--animate-config);
    -ms-animation: var(--animate-config);
    -moz-animation: var(--animate-config);
    -webkit-animation: var(--animate-config);
}
