﻿@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --theme-font-family: 'Roboto', sans-serif;
}

html,
body {
    min-height: 100%;
    height: 100%;
    font-family: 'Roboto';
}

body {
    background: #f6f6f6;
    font-size: 16px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.4em;
}

* {
    box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.img-fluid {
    display: block;
    max-width: 100%;
    height: auto;
}

.w-100 {
    width: 100%;
}

.auth-wrapper {
    position: relative;
}

    .auth-wrapper .auth-wrapper-inner {
        display: flex;
        justify-content: center;
        height: 100%;
    }

        .auth-wrapper .auth-wrapper-inner .auth-form-wrapper {
            max-width: 50%;
            flex: 50%;
        }

.auth-form-wrapper .auth-form-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 20px 10px;
}

.auth-form-wrapper .auth-header {
    display: flex;
    justify-content: space-between;
}


    .auth-form-wrapper .auth-header .application-links a {
        display: inline-block;
        margin-left: 6px;
    }

        .auth-form-wrapper .auth-header .application-links a img {
        }


.auth-form-wrapper .auth-body {
    margin: auto 0;
}

.auth-form-wrapper .auth-footer {
    margin-top: auto;
}

.auth-from-inner {
    max-width: 350px;
    margin: auto;
}


    .auth-from-inner p {
        color: #696969;
        font-family: var(--theme-font-family);
        font-size: 16px;
        font-weight: 400;
        margin: 0 0 15px;
        line-height: 19px;
    }

        .auth-from-inner p a {
            color: #0053B3;
            text-decoration: none;
        }

            .auth-from-inner p a:hover {
                text-decoration: underline;
            }

.input-feild-item {
    margin-bottom: 8px;
}

    .input-feild-item input {
        border-radius: 5px;
        border: 1px solid #717171;
        background: #fcfcfc;
        background-blend-mode: normal;
        box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
        color: #363636 !important;
        font-family: var(--theme-font-family);
        font-size: 16px;
        font-weight: 400;
        height: 45px;
        padding: 0 15px;
        background: #fff !important;
        background-color: #fff !important;
        outline: none;
        width: 100%;
    }

        .input-feild-item input:focus {
            box-shadow: none !important;
            border-color: #000 !important;
        }


.checkbox-remember {
    margin-bottom: 10px;
}

.error-msg {
    margin-bottom: 10px;
}

.login-button {
    margin-bottom: 20px;
}

.submit-button {
    margin-bottom: 10px;
}


.auth-form-wrapper .auth-footer p {
    color: #696969;
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.4px;
    text-align: center;
    margin: 0 0;
}

    .auth-form-wrapper .auth-footer p a {
        text-decoration: underline;
        color: #696969;
    }

        .auth-form-wrapper .auth-footer p a:hover {
            text-decoration: none;
        }

.refer-button {
    margin-bottom: 20px;
}

.auth-wrapper .auth-wrapper-inner .auth-content-wrapper {
    max-width: 50%;
    flex: 50%;
    background: #CADFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .auth-wrapper .auth-wrapper-inner .auth-content-wrapper:before {
        content: '';
        background: url(../images/login/oval-shape-2.svg) no-repeat bottom left / contain;
        width: 670px;
        height: 190px;
        display: block;
        position: absolute;
        right: 0;
        bottom: -30px;
    }



.auth-form-wrapper .auth-header .brand-logo a img {
    height: 78px;
}

.auth-from-inner h2 {
    color: #383838;
    font-family: var(--theme-font-family);
    font-size: 31px;
    font-weight: 500;
    line-height: 36px;
    margin: 0 0 7px;
}

.green-button {
    background: #318500;
    transition: all ease 0.4s;
    border: solid 1px #318500;
    border-radius: 100px;
    display: inline-block;
    line-height: 43px;
    color: #ffffff;
    padding: 0 55px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.7px;
    font-family: var(--theme-font-family);
}

    .green-button:focus,
    .green-button:hover {
        background: #3BA500;
        color: #ffffff;
        border: solid 1px #3BA500;
        text-decoration: none !important;
    }




.round-transparent-button {
    background: #ffffff;
    border: solid 1px #383838;
    transition: all ease 0.4s;
    border-radius: 100px;
    display: inline-block;
    line-height: 43px;
    color: #383838;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 0 55px;
    letter-spacing: 0.17777778px;
    position: relative;
    font-family: var(--theme-font-family);
    text-decoration: none;
}

    .round-transparent-button .icon {
        display: inline-block;
        vertical-align: middle;
        margin-right: 7px;
    }


    .round-transparent-button:focus,
    .round-transparent-button:hover {
        background: #f8f8f8;
        color: #3C3C3C;
        text-decoration: none !important;
    }

.auth-image-frame {
    margin: auto;
}

    .auth-image-frame .auth-image-inner {
        /*        width: 650px;
        height: 540px;
        background: #E3EEFF;
        margin: auto;
        padding: 30px;*/
    }



.auth-wrapper .auth-wrapper-inner .auth-content-wrapper .auth-content-inner {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.notification-banner-auth {
    margin-bottom: 20px;
    margin-top: auto;
}


    .notification-banner-auth .notification-auth-item {
        border-radius: 6px;
        background: #ffeea1;
        padding: 12px 10px;
    }

        .notification-banner-auth .notification-auth-item .notification-item-inner {
            display: flex;
        }

        .notification-banner-auth .notification-auth-item span {
            max-width: 62px;
            flex: 62px;
        }

        .notification-banner-auth .notification-auth-item p {
            color: #0e2e35;
            font-family: var(--theme-font-family);
            font-size: 16px;
            font-weight: 400;
            line-height: 22px;
            letter-spacing: 0.2px;
            text-align: left;
            padding-left: 10px;
            padding-right: 30px;
            max-width: calc(100% - 62px);
            flex: calc(100% - 62px);
        }
            .notification-banner-auth .notification-auth-item p span > p {
                padding-left: 0;
                padding-right: 0;
            }



            .notification-banner-auth .notification-auth-item p strong {
                font-weight: 500;
            }


.mobile-quick-links a {
    color: #2068bc;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    text-decoration: underline;
    letter-spacing: 0.17777778px;
    display: inline-block;
    margin-left: 15px;
}

    .mobile-quick-links a:hover {
        text-decoration: none !important;
    }

.mobile-quick-links,
.mobile-application-links {
    display: inline-block;
    vertical-align: middle;
}

    .mobile-application-links a {
        display: inline-block;
        margin-left: 15px;
    }

        .mobile-application-links a img {
            max-width: 21px
        }

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: block;
}


.checkbox-wrap {
    display: block;
    position: relative;
    padding: 4px 0 4px 30px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    line-height: 1;
    border: solid 1px transparent;
    transition: all ease 0.4s;
}

    .checkbox-wrap input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
        top: 0;
        margin: 0;
    }

    .checkbox-wrap .checkbox_checkmark {
        position: absolute;
        top: 5px;
        margin-bottom: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border-radius: 3px;
        border: solid 1px #7d7d7d;
        box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.5);
        background: #ffffff;
    }

        .checkbox-wrap .checkbox_checkmark:after {
            content: "";
            position: absolute;
            display: none;
            border: solid #ffffff;
            width: 8px;
            height: 16px;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
            left: 6px;
            top: 0px;
            border-color: #3BA500;
        }

    .checkbox-wrap:hover {
        /*border: solid 1px $blackColor;*/
        transition: all ease 0.4s;
    }



    .checkbox-wrap input:checked ~ .checkbox_checkmark {
        border: solid 1px #000000;
    }

        .checkbox-wrap input:checked ~ .checkbox_checkmark:after {
            display: block;
        }

    .checkbox-wrap.radiobutton-wrap .radio_checkmark {
        border-radius: 50%;
    }

        .checkbox-wrap.radiobutton-wrap .radio_checkmark:after {
            width: 12px;
            height: 12px;
            left: 3px;
            top: 3px;
            border-color: transparent;
            background: #3BA500;
            border-radius: 50%;
        }

    .checkbox-wrap.radiobutton-wrap:hover .checkbox_checkmark {
        border: solid 1px #7d7d7d;
    }



    .checkbox-wrap span.text {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        display: inline-block;
        font-family: var(--theme-font-family);
        color: #696969;
    }



.forgot-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anchor-button-link {
    color: #0053B3;
    font-family: var(--theme-font-family);
    font-size: 17px;
    font-weight: 400;
    line-height: 19px;
    text-decoration: none;
}


    .anchor-button-link:hover {
        text-decoration: underline;
    }


.password-feild {
    position: relative;
}

    .password-feild input {
        padding-right: 30px !important;
    }

    .password-feild span.eye-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        z-index: 102;
        margin-top: -7px;
    }

        .password-feild span.eye-icon .active-eye {
            display: none;
        }

        .password-feild span.eye-icon .default {
            display: block;
        }

        .password-feild span.eye-icon.active-pass .active-eye {
            display: block;
        }

        .password-feild span.eye-icon.active-pass .default {
            display: none;
        }

.error-message {
    color: #9b0303;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    background: #fff0f0;
    padding: 15px;
    border-left: solid 4px #9b0303;
    line-height: 18px;
    display: none;
}

.login-button button.progress-button {
    width: 100%;
    line-height: 45px;
    overflow: hidden;
}

    .login-button button.progress-button .content {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.7px;
        font-family: 'Roboto';
        border-radius: 23px;
    }

    .login-button button.progress-button .progress {
        border-radius: 23px;
        height: 45px;
        box-shadow: none;
        border-top: 0;
        max-width: 340px;
        margin: auto;
        left: 0;
        right: 0;
    }


.login-button .progress-button[data-style="rotate-side-down"].state-loading .progress-wrap {
    -webkit-transform: rotateX(90deg) translateZ(23px);
    transform: rotateX(90deg) translateZ(23px);
}

/*CB widget styles*/
.auth-info-cb {
    border-radius: 6px;
    background: #ecf0f8;
    max-width: 500px;
    padding: 55px 40px;
    margin: 0 auto 15px;
}

.auth-info-cb .auth-info-inner {
    max-width: 350px;
    margin: auto;
}

.auth-info-cb .auth-info-inner .brand-logo {
    margin-bottom: 25px;
    text-align: center;
}

.auth-info-cb .auth-info-inner .brand-logo img {
    margin: auto;
}

.auth-info-cb .auth-info-inner .auth-info-content {
    margin-bottom: 40px;
}

.auth-info-cb .auth-info-inner .auth-info-content p {
    color: #0e2e35;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.225px;
}

.auth-info-cb .auth-info-inner .auth-info-action {
    text-align: center;
}
.auth-info-cb .auth-info-inner .auth-info-action a {
    display: block;
}
.auth-info-cb .auth-info-inner .auth-info-action .cb-button {
    margin-bottom: 25px;
}

.black-theme-button {
    transition: all ease 0.4s;
    display: inline-block;
    line-height: 42px;
    color: #ffffff;
    padding: 0 25px;
    position: relative;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.7px;
    height: 45px;
    border-radius: 23px;
    border: 1px solid #505467;
    background: #505467;
}

.black-theme-button:hover, .black-theme-button:focus {
    background: #353535;
    border-color: #353535;
    color: #fff;
}
/*media queries*/
@media (min-width: 993px) {
    .mobile-notification-banner {
        display: none !important;
    }
}

@media (max-width: 1366px) {
    .auth-image-frame .auth-image-inner {
        /*      width: 100%;
        height: auto;*/
    }
}

@media (max-width: 1100px) {
    .auth-form-wrapper .auth-header .brand-logo a img {
        height: 59px;
    }
}


@media (max-width: 992px) {
    .auth-wrapper .auth-wrapper-inner {
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

        .auth-wrapper .auth-wrapper-inner .auth-form-wrapper {
            max-width: 100%;
            flex: 100%;
        }

        .auth-wrapper .auth-wrapper-inner .auth-content-wrapper {
            max-width: 100%;
            flex: 100%;
            height: auto;
            background: transparent;
        }

    .notification-banner-auth .notification-auth-item {
        margin-top: 0;
    }
    .auth-image-frame {
        margin: 0 auto 25px;
    }
    .auth-form-wrapper .auth-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-bottom: 10px;
    }

        .auth-form-wrapper .auth-footer .notification-banner-auth {
            display: none !important;
        }

    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }
}

@media (max-width: 743px) {
    .auth-wrapper .auth-wrapper-inner .auth-content-wrapper .auth-content-inner {
        padding: 0 8px
    }

    .notification-banner-auth .notification-auth-item p {
        font-size: 14px;
        line-height: 19px;
        letter-spacing: 0.175px;
        padding-left: 7px;
        padding-right: 0;
        max-width: calc(100% - 50px);
        flex: calc(100% - 50px);
    }

    .notification-banner-auth .notification-auth-item span {
        max-width: 50px;
        flex: 50px;
    }

    .auth-wrapper .auth-wrapper-inner {
        padding-bottom: 30px;
    }

    .auth-wrapper {
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .green-button {
        font-size: 16px;
        padding: 0 45px;
    }

    .round-transparent-button {
        font-size: 16px;
        padding: 0 45px;
    }
}

@media (max-width: 625px) {
    .auth-form-wrapper .auth-header {
        display: block;
        position: relative;
    }

    .mobile-application-links {
        position: absolute;
        top: 0;
        right: 0;
    }

    .mobile-quick-links {
        display: block;
        text-align: center;
        margin: 30px 0;
    }

        .mobile-quick-links a {
            margin: 0 10px;
        }
}

@media (max-width: 480px) {
    .green-button {
        font-size: 16px;
        padding: 0 35px;
    }

    .round-transparent-button {
        font-size: 16px;
        padding: 0 35px;
    }
    .auth-info-cb {
        padding: 30px 20px;
    }
    .auth-info-cb .auth-info-inner .auth-info-content p {
        font-size: 16px;
        line-height: 26px;
    }
    .auth-info-cb .auth-info-inner .auth-info-content {
        margin-bottom: 25px;
    }
    .black-theme-button {
        padding: 0 15px;
        font-size: 14px;
    }
    .auth-info-cb .auth-info-inner .auth-info-action .cb-button {
        margin-bottom: 15px;
    }
    .auth-info-cb .auth-info-inner .brand-logo {
        margin-bottom: 15px;
    }
}

.disabled-image-cursor {
    pointer-events: none !important;
}
.cb-login-buttons {
    display: flex;
    justify-content: space-between;
}

    .cb-login-buttons .black-theme-button {
        min-width: 220px;
    }


@media (max-width: 480px) {
    .cb-login-buttons .black-theme-button {
        min-width: 180px;
        font-size: 16px;
    }
}
.cb-demo {
    margin: 25px 0 0;
    position: relative;
    text-align: center;
}

.cb-demo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #E6E6E6;
    width: 60%;
    margin: auto;
}

.cb-demo a {
    color: #ED076F;
    font-weight: 700;
    font-size: 17px;
    padding:0px;
}
.cb-demo a:hover,
.cb-demo a:focus{
    text-decoration: none;
    color: #ED076F;
}
