:root {
    --spacing: 8px;
    --hue: 400;
    --background1: hsl(0, 0%, 100%);
    --background2: hsl(0, 0%, 100%);
    --background3: hsl(0, 0%, 100%);
    --brand1: hsl(var(--hue) 80% 60%);
    --text1: #000;
    --text2: hsl(0, 0%, 90%);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #a6b2f0;
    background-size: cover;
    min-height: 100vh;
}

.brand-wrapper {
    margin-bottom: 20px;
}

    .brand-wrapper .logo {
        height: 100px;
        width: 300px;
        object-fit: contain;
        /*object-fit: cover;*/
    }

/*.login main {
    align-items: center;
}*/

.login-card .col-md-6.col-lg-5.col-xl-4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.registerTitle {
    font-size: 14px;
}

    .registerTitle span {
        color: #001eff;
    }

.login-card {
    border: 0;
    border-radius: 0px;
    box-shadow: 1px 1px 10px -3px #626262;
    overflow: hidden;
}

.login-card-img {
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: cover;
}

.form-group {
    transform: translateZ(0);
}

.login-card .card-body {
    padding: 85px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.login-card .col-md-6.col-lg-7.col-xl-8 {
    background: #a6b2f0;
    /*background: #e3e3f2;*/
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 422px) {
    .login-card .card-body {
        padding: 15px 24px !important;
    }
}

.login-card-description {
    font-size: 25px;
    color: #000;
    font-weight: normal;
    margin-bottom: 23px;
}

.login-card form {
    width: 100%;
}

.form-elm {
    padding: 0px 8px 0px 0px;
}

.control-label {
    font-weight: 700 !important;
    color: #1b1b1b !important;
    font-family: 'Montserrat', sans-serif;
    text-align: left !important;
    margin-bottom: unset;
    position: absolute;
    top: -11px;
    z-index: 99;
    background: #fff;
    min-height: 8px !important;
    width: auto;
    left: 30px;
    padding: 0px 4px !important;
    white-space: nowrap;
    max-width: unset;
    margin-top: unset;
}

.login-card .form-control {
    border: 1px solid #d5dae2;
    padding: 6px 12px;
    margin-bottom: 20px;
    min-height: 45px;
    font-size: 16px;
    font-weight: normal;
}

.fade.in {
    opacity: 1 !important;
    background: #000000cf !important;
}

.items-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    color: #fff;
    background-color: #006b18;
    border-color: #006b18;
    width: 90px;
    margin: 0px 10px 12px 0px;
    box-shadow: 0px 1px 7px 2px rgb(121 115 115 / 0.60);
    border-radius: 50px;
    height: 36px;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    width: 90px;
    margin: 0px 20px 12px 10px;
    box-shadow: 0px 1px 7px 2px rgb(121 115 115 / 0.60);
    border-radius: 50px;
    height: 36px;
}


.flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .flexbox > div {
        width: 100%;
        height: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 999;
        left: 50%;
        -webkit-box-align: center;
        top: 50%;
        -ms-flex-align: center;
        align-items: center;
        overflow: hidden;
        transform: translate(-50%,-50%);
        background-color: #00000080;
    }

/* TRIPLE SPINNER */
.triple-spinner {
    display: block;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #b922ff;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    .triple-spinner::before,
    .triple-spinner::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        border: 4px solid transparent;
    }

    .triple-spinner::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-top-color: #2100ff;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3.5s linear infinite;
    }

    .triple-spinner::after {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-top-color: #0793ff;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.75s linear infinite;
    }

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


@media only screen and (max-width: 968px) {
    .flexbox > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333%;
        flex: 0 0 33.3333333%;
    }
}

@media only screen and (max-width: 768px) {
    .flexbox > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}

@media only screen and (max-width: 568px) {
    .flexbox > div {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}


.login-card .form-control::-webkit-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::-moz-placeholder {
    color: #919aa3;
}

.login-card .form-control:-ms-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::-ms-input-placeholder {
    color: #919aa3;
}

.login-card .form-control::placeholder {
    color: #919aa3;
}

.login-card .login-btn {
    padding: 13px 20px 12px;
    background-color: #000;
    border-radius: 4px;
    font-size: 17px;
    font-weight: bold;
    line-height: 20px;
    color: #fff;
    margin-bottom: 24px;
}

    .login-card .login-btn:hover {
        border: 1px solid #000;
        background-color: transparent;
        color: #000;
    }

.login-card .forgot-password-link {
    font-size: 14px;
    color: #919aa3;
    margin-bottom: 12px;
}

.login-card-footer-text {
    font-size: 16px;
    color: #0d2366;
    margin-bottom: 60px;
}

.fad {
    opacity: 1 !important;
    background: #000000c2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width:1024px ) {
    .login-card form {
        width: 100% !important;
    }
}

.custom-center form {
    text-align: center !important;
}

.mobile-login-card-img {
    display: none;
}

@media (max-width: 991px) {
    .login-bg-ds {
        display: none !important;
    }
}

@media (min-width: 991px) and (max-width: 1350px) {
    .login-card-img {
        object-fit: contain;
    }

    .brand-wrapper .logo {
        height: 80px;
        width: 230px;
    }
}

@media (max-width: 767px) {
    body {
        /*background: url(../images/login-background.webp) no-repeat;*/
        background: url(../images/login-background.png) no-repeat;
        background-size: 500px;
        background-position: top;
    }

    .brand-wrapper .logo {
        height: 80px;
        width: 230px;
    }

    .form-elm {
        margin-bottom: 1rem;
    }

    .login-card .card-body {
        overflow: auto;
        height: calc( 100vh - 300px ) !important;
        align-items: center !important;
        justify-content: flex-start;
    }

    .login main {
        align-items: flex-end !important;
    }

    .mobile-login-card-img {
        display: block;
        width: 100%;
        text-align: center;
    }

        .mobile-login-card-img img {
            width: 300px;
            margin-bottom: 2rem;
        }

    .login-card-footer-text {
        margin-bottom: 24px;
    }

    .container {
        width: 100%;
        position: absolute;
        padding-right: 0px;
        padding-left: 0px;
        max-width: 100%;
    }

    .login-card {
        border-radius: 30px 30px 0 0;
    }

    .login-card-footer-nav p {
        /*padding-top: 0px !important;*/
    }

    .login-card-img {
        /*position: fixed;
        top: 0px !important;
        height: 200px;*/
    }

    /*.brand-wrapper .logo {
        position: fixed;
        top: 15%;
        width: 65%;
        left: 50%;
        transform: translate(-50%,-50%);
        height: unset !important;
        z-index: -1;
    }*/

    label {
        display: inline-block;
        margin-bottom: 0px;
        margin-top: 10px;
        font-size: 12px;
    }

    .login-card .form-control {
        margin-bottom: 0px;
        min-height: 35px;
    }
}

@media (max-height: 499px) {
    .login-card .card-body {
        height: unset !important;
    }

    body, .login-card {
        overflow: auto !important;
    }
}

/*@media (min-height: 500px) and (max-height: 700px) {
    .mobile-login-card-img img {
        width: 200px !important;
    }

    .login-card .card-body {
        padding: 15px 24px !important;
        height: calc( 100vh - 170px ) !important;
    }
}*/

@media (max-width: 400px) and (max-height:700px) {
    .login-card .card-body {
        height: calc( 100vh - 190px ) !important;
    }

    body {
        background-size: 380px;
    }
}


@media (max-width: 360px) {
    .login-card .card-body {
        height: calc( 100vh - 230px ) !important;
    }

    body {
        background-size: 370px;
    }
}


@media (max-width: 320px) {
    body {
        background-size: 350px;
    }

    .mobile-login-card-img img {
        width: 200px !important;
    }

    .login-card .card-body {
        padding: 15px 24px !important;
        height: calc( 100vh - 170px ) !important;
    }

    .login-card-footer-nav p {
        margin-bottom: 0px !important;
    }

    .login-card .login-btn {
        margin-bottom: 14px;
    }

    .login-card .card-body {
        padding: 15px 24px;
    }

    .brand-wrapper {
        margin-bottom: 12px;
        margin-top: 12px;
    }

    .login-card-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    label {
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 0px;
        font-size: 12px;
    }
}

.login-card-footer-nav p {
    font-size: 14px;
    color: #919aa3;
    /*padding-top: 4%;*/
    padding-top: 7%;
    float: left;
}


.btnloginAlert.fade.in {
    display: flex !important;
    justify-content: center;
    align-items: center;
}


/*@media only screen and (min-width: 767px){
    .login-card-footer-nav #footer_p {
        top: -50px;
        margin: auto;
        float: right;
    }
}*/

@media only screen and (max-width: 767px) {
    .login-card-footer-nav {
        text-align: center;
    }

        .login-card-footer-nav p {
            /*float: unset;*/
        }

    /*.login-card-footer-nav #footer_p {
            top:unset;
        }*/
}

@media only screen and (max-width: 991px) {
    .login-card-footer-nav .imgcontainer {
        max-width: fit-content;
    }

    .login-card-footer-nav p {
        padding-top: 4%;
    }
}

#passpolicy.alert {
    text-align: start !important;
}

    #passpolicy.alert span {
        font-size: 14px;
    }

    #passpolicy.alert ul {
        padding: 0px 15px;
        margin: 0px;
    }

        #passpolicy.alert ul li {
            font-size: 13px;
        }

@media (max-width: 1700px) and (min-width: 1025px) {
    .form-control,
    .custom-checkbox-group {
        height: 30px !important;
        padding: 2px 12px;
    }
}

.form-control:focus {
    box-shadow: unset !important;
    border: 1px solid #000;
}

.form-control {
    color: #000 !important;
}

fieldset {
    background: #ffffff;
    /*border: 1px solid #e6e8e8;*/
    border: unset !important;
    border-radius: 5px;
    box-shadow: 0px 1px 7px 1px rgb(202, 191, 191, 0.75);
    margin: 20px 0 20px 0;
    padding: 5px;
    position: relative;
    padding-left: 15px;
    padding-top: 30px;
}

    fieldset .form-group {
        margin-left: 0;
        margin-right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    fieldset legend {
        background: inherit;
        font-family: "Montserrat", sans-serif;
        color: #fff !important;
        font-size: 11px;
        left: 10px;
        padding: 0 10px;
        position: absolute;
        top: -12px;
        font-weight: 400;
        width: auto !important;
        border: none !important;
    }

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

#form .form-group .form-elm {
    padding: 0px 8px 0px 0px !important;
}

.txtborder-error {
    /*outline-style: solid !important;
  outline-width: 2px !important;
  outline-color: red !important;*/
    border: solid 2px red !important;
}

#ChangePassword-Div .control-label {
    font-size: 13px;
    left: 10px !important;
}

#ChangePassword-Div fieldset {
    padding-top: 0px !important;
    text-align: center;
}

.text-right {
    text-align: right;
}

::selection {
    background: #407887;
    text-shadow: none;
    color: #ffffff;
}

.sweet-alert.showSweetAlert fieldset {
    display: none !important;
}

#ChangePassword-Div .logindiv {
    text-align: center !important;
}

div.number-code {
    display: flex;
    padding-bottom: 15px;
    width: 75%;
    margin: auto;
}

    div.number-code input:not(:last-child) {
        margin-right: calc(var(--spacing) * 2);
    }

.forgetpassword a span {
    color: #3603ec;
    font-weight: 600;
    text-decoration: underline;
}

.pull-right {
    text-align: end !important;
}

input.code-input {
    font-size: 1em;
    width: 1em;
    text-align: center;
    flex: 1 0 1em;
    font-weight: 600;
}

.number-code input {
    padding: var(--spacing);
    border-radius: calc(var(--spacing) / 2);
    color: var(--text1);
    background: var(--background1);
    border: 0;
    border: 1px solid #000;
}

    .number-code input:invalid {
        box-shadow: none;
    }

    .number-code input:focus {
        outline: none;
        border: 1px solid #000;
        background: var(--background3);
    }
#FGPassword-Div .btn {
    width: 35%;
}

#loading {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 100000;
    opacity: 1;
    background-color: #0000002b;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
#inputdigits .alert.alert-warning {
    margin-bottom: 0px;
}

#inputdigits span {
    font-size: 14px;
}
.text-danger p {
    color: #dc3545;
}


element.style {
    top: 34px;
    left: 101px;
    display: block;
}

.popover.fade.in {
    background: #fff !important;
    left: 0px !important;
}

.fade.in, .fade-scale.in {
    opacity: 1 !important;
    background: #00000091 !important;
}

.popover.bottom {
    margin-top: 10px;
}

.fade.in {
    opacity: 0.9;
    background: black;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid #1c2a48;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
    line-break: auto;
}

    .popover.fade.in {
        background: #fff !important;
        left: 0px !important;
    }

    .popover > .arrow {
        left: 10% !important;
    }
    .popover > .arrow {
        border-width: 11px;
    }

    .popover.bottom > .arrow {
        top: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-width: 0;
        border-bottom-color: #999;
        border-bottom-color: rgba(0,0,0,.25);
    }
    .popover > .arrow, .popover > .arrow:after {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }
    .popover.bottom > .arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: #fff;
    }
.popover-content {
    padding: 9px 14px;
}
#pop-cont i{
    padding-right:5px;
}
#pop-cont span {
    padding-left: 5px;
    border-left: 1px solid #1c2a48;
}