:root {
    --theme1: #0CAF60;
    --theme2: #75C251;
    --theme3: #584ED2;
    --theme4: #145388;
    --theme5: #B9406B;
    --theme6: #008ECC;
    --theme7: #922C88;
    --theme8: #C0A145;
    --theme9: #48494B;
    --theme10: #0C7785;
}
.custom-login {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 100%;
    min-height: 100vh;
    /*background: var(--bs-white);*/
}

.theme-1 .custom-login {background: var(--theme1);}
.theme-2 .custom-login {background: var(--theme2);}
.theme-3 .custom-login {background: var(--theme3);}
.theme-4 .custom-login {background: var(--theme4);}
.theme-5 .custom-login {background: var(--theme5);}
.theme-6 .custom-login {background: var(--theme6);}
.theme-7 .custom-login {background: var(--theme7);}
.theme-8 .custom-login {background: var(--theme8);}
.theme-9 .custom-login {background: var(--theme9);}
.theme-10 .custom-login {background: var(--theme10);}
.custom-color .custom-login {background: var(--color-customColor);}

.custom-login .custom-login-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.custom-login .dash-header {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    box-shadow: none;
    min-height: auto;
}

.custom-login .dash-header .dash-h-item {
    min-height: auto;
}

.custom-login .dash-header .navbar-brand {
    padding: 0;
}

.custom-login .dash-header .navbar-brand a {
    display: block;
    line-height: 1;
}

.custom-login .dash-header .navbar-brand a .logo {
    width: 100%;
}

.custom-login .bg-login {
    content: "";
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    border-radius: 0px;
    position: absolute;
    transform-origin: bottom;
    background: var(--bs-green);
}

.custom-login .navbar {
    background: var(--bs-white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3);
    padding: 10px 0;
}

.custom-login .navbar .navbar-collapse {
    justify-content: flex-end;
}

.custom-login .navbar .nav-link {
    padding: 1px 20px;
    position: relative;
    font-weight: 500;
    color: var(--bs-dark);
}

.custom-login .navbar .nav-item .nav-link::after {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 2px;
    background: #000000;
    top: 0;
    right: 0;
}

.custom-login .navbar .nav-item:last-of-type .nav-link::after {
    display: none;
}

.custom-login .card {
    box-shadow: none;
}

.custom-login .custom-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    z-index: 1;
}

.custom-login .custom-wrapper .card .card-body {
    background-color: var(--bs-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 0px 25px 0px #0000000d;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.custom-login .custom-login-form .for-pwd {
    font-size: 13px;
    line-height: 1;
}

.custom-login .custom-login-form .login-btn {
    margin-bottom: 20px;
}

.custom-login .custom-login-form .remember-check {
    font-size: 13px;
}

.custom-login .custom-login-form .field-icon {
    position: absolute;
    top: 58%;
    right: 10px;
    line-height: 1;
}

.custom-login .custom-login-form .pss-field {
    position: relative;
}

.custom-login a {
    color: var(--bs-green);
}

.custom-login .custom-wrapper .card .card-body h2 span {
    color: var(--bs-green);
    font-weight: 400;
}
.custom-login .form-group label span {
    color: #f40b13;
}
.custom-login .form-group input::-webkit-input-placeholder { 
  color: #ced4da !important;
}
.custom-login .form-group input::-moz-placeholder { 
  color: #ced4da !important;
}
.custom-login .form-group input:-ms-input-placeholder { 
  color: #ced4da !important;
}
.custom-login .form-group input:-moz-placeholder { 
  color: #ced4da !important;
}
.custom-login .form-group .form-control:focus {
    border-color: var(--color-customColor);
    box-shadow:  none;
}

.custom-login .form-group .form-check-input:checked {
    background-color: var(--bs-green);
    border-color: var(--bs-green);
}
.custom-login .btn {
    font-weight: 700;
}
.custom-login .autorized-btn {
    gap: 15px;
    justify-content: space-between;
    margin-top: 20px;
}

.custom-login .autorized-btn .btn {
    max-width: 47%;
    width: 100%;
}

.custom-login .drp-language .drp-text {
    margin-right: 5px;
}

.custom-login .drp-language a span {
    color: #000000 !important;
}

.custom-login .dropdown-toggle::after {
    content: "";
    position: absolute;
    height: 6px;
    width: 9px;
    right: 10px;
    top: 18px;
    background: url(../images/down-arrow.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all ease-in-out .5s;
    -moz-transition: all ease-in-out .5s;
    -ms-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s;
    border: 0;
}

.custom-login .drp-language .btn {
    background: #F5F5F5;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin: 0;
    padding: 10px 25px 10px 10px;
}

.custom-login .drp-language .btn.show {
    border-color: #F5F5F5;
}

.custom-login .custom-img img {
    max-width: 540px;
    width: 100%;
    margin: auto;
    display: block;
}

.custom-login .card {
    margin-bottom: 0;
    background-color: transparent;
    width: 440px;
    position: relative;
    z-index: 1;

}
.custom-login .custom-wrapper .card .card-body .login-title {
    text-align: center;
    text-transform: uppercase;
    margin: 20px -30px 30px -30px;
    border-top: 1px solid var(--color-customColor);
    padding-top: 20px;
}
.custom-login .custom-wrapper .card .card-body .login-title h2 {
    margin-bottom: 0;
}
.custom-login .custom-wrapper .card .card-body {
    box-shadow: 0px 0px 25px 0px rgb(0 0 0 / 10%);
    border-radius: 20px !important;
    padding: 30px;
}
.login-bg-img {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: absolute;
    width: 100%;
    justify-content: space-between;
}


.login-bg-1 {
    max-width: 500px;
}
.login-bg-2{
    max-width: 500px;
}
.auth-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding-top: 20px;
}
.dash-header:not(.transprent-bg){
    left: auto !important;
}
.forgot-password {
    text-align: right;
    font-weight: 600;
}

@media only screen and (max-width: 1439px) {
    .login-bg-1 {
        max-width: 400px;
    }
    .login-bg-2 {
        max-width: 400px;
    }
}


@media only screen and (max-width: 1300px) {
    .login-bg-1 {
        max-width: 350px;
    }
    .login-bg-2 {
        max-width: 350px;
    }
}
@media only screen and (max-width: 1199px) {
    .login-bg-1 {
        max-width: 260px;
    }
    .login-bg-2 {
        max-width: 260px;
    }

}



@media only screen and (max-width: 991px) {
    
    .custom-login .navbar .nav-link {
        padding: 0px 15px;
    }
    .auth-footer {
        text-align: center;
    }
    .login-bg-1,.login-bg-2{
       display: none;
    }
}

@media only screen and (max-width: 767px) {
    .custom-login .dash-header .navbar-brand {
        max-width: 120px;
    }

    .custom-login .navbar .nav-item .nav-link::after {
        display: none;
    }

    .custom-login .navbar .nav-link {
        padding: 10px 20px;
    }

    .custom-login .custom-wrapper .card .card-body {
        padding: 20px 15px;
    }
    .custom-login .custom-wrapper .card .card-body .login-title {
        margin: 20px -15px 20px -15px;
    }
    
    .custom-login .navbar .navbar-collapse {
        text-align: center;
        margin-top: 20px;
    }

    .custom-login .dash-header .dash-h-item {
        display: block;
    }

    .custom-login .drp-language a {
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .custom-login .autorized-btn .btn {
        max-width: 100%;
    }
    .custom-login .card {
        width: 100%;
    }
    .custom-login-inner .dash-header {
        top: 60px !important;
    }

}
@media only screen and (max-width: 479px) {
.navbar-brand .auth-navbar-brand {
        max-height: 80px !important;
    }
 .auth-footer {
   padding-top: 10px;
   font-size: 12px;
 }   
}