/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Montserrat-medium;
    src: url('/admin/fonts/NotoSans-Medium.ttf') ;
}
@font-face {
    font-family: Montserrat-semibold;
    src: url('/admin/fonts/NotoSans-SemiBold.ttf');
}
/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat-medium', sans-serif !important;
}




/*---------------------------------------------*/
a {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
}

/*---------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

p {
    /*font-family: Poppins-Regular;*/
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}


/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus, input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #adadad;
}

input:-moz-placeholder {
    color: #adadad;
}

input::-moz-placeholder {
    color: #adadad;
}

input:-ms-input-placeholder {
    color: #adadad;
}

textarea::-webkit-input-placeholder {
    color: #adadad;
}

textarea:-moz-placeholder {
    color: #adadad;
}

textarea::-moz-placeholder {
    color: #adadad;
}

textarea:-ms-input-placeholder {
    color: #adadad;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
    padding-top: 30%;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    /*background: #f2f2f2;*/
}
.wrap-login100 {

    padding-left: 15px;
    padding-right: 15px;
}
.alert-danger {
    color: #FFF;
    background-color: #dc3545;
    border-color: #dc3545;
}

/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
    width: 100%;
}

.login100-form-title {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
    background: transparent linear-gradient(100deg, #0075df 0%, #005db2 100%) 0% 0% no-repeat padding-box;
    padding: 15px 0;
}

.login100-form-title i {
    font-size: 60px;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #A1E2F5;
    border-radius: 12px;
    overflow: hidden;
}

.input100 {
    font-size: 15px;
    color: #000;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 60px;
    padding: 0 55px;
}

/*---------------------------------------------*/
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;

    background: #6a7dfe;
    background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    background: -o-linear-gradient(left, #21d4fd, #b721ff);
    background: -moz-linear-gradient(left, #21d4fd, #b721ff);
    background: linear-gradient(left, #21d4fd, #b721ff);
}

.focus-input100::after {
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #999999;
    line-height: 1.2;

    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 16px;
    left: 0px;
    padding-left: 5px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
    top: -15px;
}

.input100:focus + .focus-input100::before {
    width: 100%;
}

.has-val.input100 + .focus-input100::after {
    top: -15px;
}

.has-val.input100 + .focus-input100::before {
    width: 100%;
}

/*---------------------------------------------*/
.btn-show-pass {
    font-size: 15px;
    color: #999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 15px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-show-pass:hover {
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
}

.btn-show-pass.active {
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 25px;
}

.wrap-login100-form-btn {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.login100-form-bgbtn {
    position: absolute;
    z-index: -1;
    width: 300%;
    height: 100%;
    background: transparent linear-gradient(100deg, #17A7F8 0%, #16BAEF 100%) 0% 0% no-repeat padding-box;
    top: 0;
    left: -100%;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn {
    font-size: 20px;
    font-family: Montserrat-semibold;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 60px;
}

.wrap-login100-form-btn:hover .login100-form-bgbtn {
    left: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
    .wrap-login100 {
        padding: 77px 15px 33px 15px;
    }
}



@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}
@media (device-width: 768px) {
    .wrap-login100 {
        width: 100%;
    }
}
.login_title {
    color: #000;
    font-size: 22px;
    text-transform: uppercase;
    text-align: center;
    font-family: Montserrat-semibold;
    padding: 42px 0 15px;
    line-height: 28px;
}
.limiter-banner {
    padding: 0 25px;
}
.limiter-banner .logo {
    padding-bottom: 15px;
    position: relative;
    text-align: left;
    padding-left: 105px;
}
.arrt-text {
    position: absolute;
    top: 60px;
    /* left: 94px; */
    left: 205px;

}
.arrt-text p {
    color: #005fb5;
    font-weight: bold;
    font-size: 22px;
}
.arrt-text i {
    font-size: 18px;
}
li {
    padding-bottom: 5px;
    font-size: 14px;
}

.wrap-input100 svg {
    position: absolute;
    color: #0172D9;
    margin-left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.wrap-input100 .border-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 42px;
    color: #0172D9;
}
.apex-item-option p {
    font-size: 18px;
    font-family: Montserrat-semibold;
    color: #000;
}
input[type=checkbox] {
    -moz-appearance:none;
    -webkit-appearance:none;
    -o-appearance:none;
    outline: none;
    content: none;
    border: none;
}
input[type=checkbox]:before {
    font-family: "FontAwesome";
    content: "\f00c";
    font-size: 15px;
    color: transparent !important;
    background: #fff;
    display: block;
    width: 25px;
    height: 25px;
    border: 1px solid #16B2F3;
    margin-right: 10px;
    border-radius: 5px;
}
input[type=checkbox]:checked:before {
    color: white !important;
    background: #0172D9;
    text-align: center;
}
.log-pd {
    padding: 25px;
}
.limiter-banner img  {
    width: 70%;
    height: 100%;
    padding-top: 50px;
}
.btn-show-pass i {
    font-size: 21px;
}
#alerts-container {
    font-size: 15px;
}
#alerts-container .alert {
    padding: 15px;
}
.alert-success {
    color: #FFF;
    background-color: #4CAF50;
    border-color: #4CAF50;
}
@media (max-device-width: 1194px) {

    .arrt-text p {
        font-size: 16px;
    }
    .arrt-text i {
        font-size: 14px;
    }
    .login_title {
        font-size: 18px;
    }
}

@media (device-width: 375px) {
    .limiter-banner .logo {
        margin-bottom: 10px;
    }
}
@media (max-width: 420px) {
    .limiter-banner img {
        width: 70px !important;
    }
    .arrt-text {
        left: 78px;
    }
    .log-pd {
        padding: 25px 0;
    }
}
@media (device-width: 768px) {
    .limiter-banner .logo {
        padding-bottom: 20px;
    }
}

@media (max-width: 425px) {
    .limiter-banner {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .auth-mic {
        background-size: cover;
    }
    .arrt-text p {
        font-size: 13px;
    }
    .login_title {
        font-size: 15px;
    }
    .arrt-text i {
        font-size: 12px;
    }
    .limiter-banner {
        padding: 0 5px;
    }
    .limiter-banner img {
        width: 70px !important;
    }
    .arrt-text {
        left: 75px;
    }

}
.main-left{
    padding: 0;
}
.bg-right-login{
    display: flex;
    align-items: center;
    padding: 0;
    background-image: url("/admin/img/Group_login.png");
    background-repeat: no-repeat;
}

@media screen and (max-width: 1000px){
    .main-login-ipad{
        max-width: 450px;
    }
}

/*LOGIN*/
.wrapper-login {
    width: 100%;
    height: 100%;
}
.banner-login {
    width: 55%;
    /*height: 100%;*/
}
.banner-login img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.form-login{
    background-image: url("/admin/img/Group_login.png");
    background-repeat: no-repeat;
    padding: 5% 110px;
    width: 45%;
    background-size: 100%;
}
.logo-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-logo-banner {
    padding-left: 10px;
}
.text-logo-banner p {
    text-transform: uppercase;
    font-family: 'Montserrat-semibold';
    font-size: 24px;
}
.text-logo-banner i {
    font-size: 18px;
}
@media only screen and (max-width: 390px) {
    .text-logo-banner p {
        font-size: 15px !important;
    }
    .text-logo-banner i {
        font-size: 12px !important;
    }
}
@media only screen and (max-width: 920px) {
    .wrapper-login {
        flex-direction: column;
        min-height: calc(100vh - 100px);
    }
    .banner-login{
        width: 100%;
        height: 30%;
    }
    .form-login {
        padding: 10px;
        background-repeat: initial;
        width: 100%;
        height: 100%;
    }
    .text-logo-banner p {
        font-size: 16px;
    }
    .text-logo-banner i {
        font-size: 14px;
    }
    .login_title {
        padding: 16px;
    }
    .log-pd {
        padding: 0 15px;
    }
    .apex-item-option p {
        font-size: 14px;
        padding-left: 10px;
    }
    .login100-form-btn {
        font-size: 18px;
        height: 50px;
    }
    .wrap-input100 {
        margin-bottom: 20px;
    }
    input[type=checkbox]:before {
        width: 20px;
        height: 20px;
    }
}
/*@media only screen and (max-width: 1024px){*/
/*    .form-login {*/
/*        padding: 5% 30px;*/
/*        background-repeat: initial;*/
/*    }*/
/*    .text-logo-banner p {*/
/*        font-size: 18px;*/
/*    }*/
/*    .text-logo-banner i {*/
/*        font-size: 14px;*/
/*    }*/
/*    .login100-form-btn {*/
/*        font-size: 18px;*/
/*    }*/
/*    .login_title {*/
/*        font-size: 19px;*/
/*    }*/
/*}*/
@media only screen and (device-width: 1366px)  {
    .form-login {
        padding: 5% 25px;
    }
}
@media only screen and (device-width: 1368px)  {
    .form-login {
        padding: 5% 25px;
    }
}
@media screen and (max-width: 1920px) {
    /*.form-login {*/
    /*    padding: 40px 80px;*/
    /*}*/
    .text-logo-banner p {
        font-size: 20px;
    }
    .text-logo-banner i {
        font-size: 14px;
    }
    .login_title{
        font-size: 18px;
    }
    .apex-item-option p {
        font-size: 16px;
    }
    input[type=checkbox]:before {
        width: 20px;
        height: 20px;
    }
    .login100-form-btn {
        font-size: 18px;
        height: 50px;
    }
    .wrap-input100 {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 767px) {
    #alerts-container {
        width: 80% !important;
    }
}
@media only screen
and (min-device-width: 834px)
and (max-device-width: 834px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {
    .banner-login {
        width: 100%;
        height: 50%;
    }
    #alerts-container {
        width: 40% !important;
    }
}

@media only screen
and (min-device-width: 834px)
and (max-device-width: 834px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape) {
    .form-login {
        padding: 5% 25px;
    }
    .text-logo-banner p {
        font-size: 20px;
    }
    .text-logo-banner i {
        font-size: 14px;
    }
    .login_title {
        font-size: 18px;
    }
    .wrap-input100 {
        margin-bottom: 15px;
    }
    .apex-item-option p {
        font-size: 16px;
        padding-left: 10px;
    }
    .login100-form-btn {
        font-size: 18px;
        height: 50px;
    }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 1.5)  {
    .form-login {
        padding: 5% 35px;
    }
}


.btn-sso-cus {
    background: linear-gradient(90deg, #209ce2 -11.36%, #2460d6);
    color: #fff;
}

.btn-sso-cus:hover {
    color: #fff;
}
