
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
}

.fixed-header {
    border-top: thin solid #f3f5f6;
    position: fixed;
    top: 0;
    left: 0;
    padding: .5rem 0;
    width: 100%;
    background: #fff !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, .075);
    z-index: 99;
    border-bottom: 1px solid #f5f5f5;
}

    .fixed-header .navbar-brand img {
        height: 54px;
    }

.contact-demo {
    background: #fff url(../images/contact-demo.jpg)no-repeat center center;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid #eee;
    padding: 80px 0 10px;
    height: 100vh;
    overflow: auto;
}

    .contact-demo p {
        line-height: 24px;
        font-size: 14px;
    }


.formdemo {
    max-width: 420px;
    margin: 0rem auto 0 auto;
    padding: 30px;
    background: #fff;
    position: relative;
    box-shadow: 0 0 1.875rem 0 rgba(0,0,0,.25);
    border-radius: .625rem;
}

.mt-80 {
    margin-top: 90px !important;
}

.display-7 {
    font-size: 18px;
}

.clslogo img {
    width: 180px;
}

#progressbar {
    margin-bottom: 30px;
    max-width: 520px;
    margin: 0 auto;
    overflow: hidden;
    padding-left: 0px;
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: #15a2e3;
        text-transform: uppercase;
        font-size: 12px;
        width: 33.33%;
        float: left;
        position: relative;
        font-weight: 600;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 20px;
            line-height: 20px;
            display: block;
            font-size: 10px;
            color: #fff;
            background: #15a2e3;
            border-radius: 3px;
            margin: 0 auto 5px auto;
            position: relative;
            z-index: 2;
        }

        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: #15a2e3;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: 0;
        }

        #progressbar li:first-child:after {
            content: none;
        }

    #progressbar .active {
        color: #27AE60;
    }

    #progressbar li.active:before, #progressbar li.active:after {
        background: #27AE60;
        color: white;
    }

.form-floating > label {
    color: #6985a7;
    font-size: 16px;
}

.form-floating > .form-control, .form-floating > .form-select {
    background: #f6fbfd;
    overflow: hidden;
    border: 1px solid #e6f0fd;
    color: var(--main);
}

.ddnone {
    display: none;
}

.ddnone {
    display: none;
}

.form-floating .list-unstyled li {
    font-size: 12px;
    color: #666
}

.progress {
    height: 3px !important;
    margin-bottom: 10px;
}

.progress-bar-danger {
    background-color: #e90f10;
}

.progress-bar-warning {
    background-color: #ffad00;
}

.progress-bar-success {
    background-color: #02b502;
}

.show-pass {
    position: absolute;
    top: 6%;
    right: 0;
    transform: translateY(-6%);
    height: 50px;
    line-height: 50px;
    width: 35px;
    z-index: 999;
    cursor: pointer;
    color: var(--main);
}

.ex-account p a {
    color: #f6086e;
    text-decoration: underline;
}

.fa-circle {
    font-size: 6px;
}

.fa-check {
    color: #02b502;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 50px;
    line-height: 50px;
    width: 45px;
    z-index: 999;
    cursor: pointer;
    color: var(--main);
}

.display-7 {
    font-size: 24px;
}

.disabled, a:disabled {
    background-color: rgba(0,0,0,.25) !important;
    border-color: #e2e5e7 !important;
    color: #fff !important;
    cursor: default !important;
}





.btn_loder {
    width: 54px;
    height: 54px;
    border-radius: 54px;
    text-align: center;
    padding: 0px;
    padding-top: 3px;
    border: 0px;
    background-color: #fff;
}

    .btn_loder:hover {
        color: #fff;
        background-color: #fff;
        border-color: #fff;
    }

@-moz-keyframes timer-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes timer-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes timer-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.timer-loader {
    opacity: 0.75;
}

    .timer-loader:not(:required) {
        border: 6px solid #219dd6;
        -moz-border-radius: 24px;
        -webkit-border-radius: 24px;
        border-radius: 24px;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: inline-block;
        overflow: hidden;
        position: relative;
        text-indent: -9999px;
        width: 48px;
        height: 48px;
    }

        .timer-loader:not(:required)::before {
            -moz-animation: timer-loader 1250ms infinite linear;
            -webkit-animation: timer-loader 1250ms infinite linear;
            animation: timer-loader 1250ms infinite linear;
            -moz-transform-origin: 3px 3px;
            -ms-transform-origin: 3px 3px;
            -webkit-transform-origin: 3px 3px;
            transform-origin: 3px 3px;
            background: #219dd6;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            content: '';
            display: block;
            position: absolute;
            width: 6px;
            height: 19.2px;
            left: 15px;
            top: 15px;
        }

        .timer-loader:not(:required)::after {
            -moz-animation: timer-loader 15000ms infinite linear;
            -webkit-animation: timer-loader 15000ms infinite linear;
            animation: timer-loader 15000ms infinite linear;
            -moz-transform-origin: 3px 3px;
            -ms-transform-origin: 3px 3px;
            -webkit-transform-origin: 3px 3px;
            transform-origin: 3px 3px;
            background: #219dd6;
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            content: '';
            display: block;
            position: absolute;
            width: 6px;
            height: 16px;
            left: 15px;
            top: 15px;
        }

    .timer-loader[disabled] {
        opacity: 1;
        filter: alpha(opacity=10);
    }

@media (max-width:767px) {
    .display-7 {
        font-size: 18px;
    }

    .clslogo img {
        width: 120px;
    }

    #progressbar li {
        font-size: 11px;
    }
}


.authentication {
    display: flex;
    align-items: center;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #e1e1e0 url(../images/lgbg.png) no-repeat top left;
    background-size: auto;
    height: 100vh;
    background-size: cover;
    position: relative;
}

    .authentication::after {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: url(../images/signin.png) no-repeat bottom right;
        background-size: auto;
        background-size: auto;
    }

    .authentication .auth_form {
        -moz-transition: all 0.5s;
        -o-transition: all 0.5s;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        border-radius: 10px;
        background: #f5f5f5;
        border: 5px solid #fff;
        box-shadow: 0 0 16px rgba(41,42,51,0.06), 0 6px 20px rgba(41,42,51,0.02);
        z-index: 9;
    }

.displayname {
    text-align: center;
    font-family: cursive;
    font-size: 20px;
    color: #81a1eb;
}