@font-face {
    font-family: "Averta-Regular";
    src: url("../../../assets/global/fonts/Averta-Regular.ttf") format("truetype");
    src: url("../../../assets/global/fonts/Averta-Regular.eot") format("embedded-opentype");
    src: url("../../../assets/global/fonts/Averta-Regular.woff") format("woff");
    src: url("../../../assets/global/fonts/Averta-Regular.woff2") format("woff2")
}

@font-face {
    font-family: "Averta-Bold";
    src: url("../../../assets/global/fonts/Averta-Bold.ttf") format("truetype");
    src: url("../../../assets/global/fonts/Averta-Bold.eot") format("embedded-opentype");
    src: url("../../../assets/global/fonts/Averta-Bold.woff") format("woff");
    src: url("../../../assets/global/fonts/Averta-Bold.woff2") format("woff2")
}

::-moz-placeholder {
    color: #acacac !important;
    font-size: 12px
}

::placeholder {
    color: #acacac !important;
    font-size: 12px
}

body {
    font-family: "Averta-Regular",sans-serif !important;
    background-color: rgba(0,0,0,0);
    background-image: url(../../img/loginbg.jpeg?v=2);
    background-repeat: no-repeat;
    background-size: cover;
    color: #373c3c
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    body {
        background-size: cover;
        background-position: center
    }
}

@media only screen and (max-width: 767px) {
    body {
        background-image: url(../../img/loginbg.jpeg?v=2);
        background-size: cover;
        background-position: center
    }
}

.login {
    background-color: rgba(0,0,0,0);
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    .login {
        min-height: 100%
    }
}

@media only screen and (max-width: 767px) {
    .login {
        min-height: 100%
    }
}

@media only screen and (min-width: 1700px) {
    .login .login-wrapper {
        margin-top: 0;
        width: 500px
    }
}

@media only screen and (min-width: 1400px)and (max-width: 1699px) {
    .login .login-wrapper {
        margin-top: 0;
        width: 400px
    }
}

@media only screen and (min-width: 1024px)and (max-width: 1399px) {
    .login .login-wrapper {
        margin: 0 auto !important
    }
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    .login .login-wrapper {
        margin: 0 auto;
        width: 100%
    }
}

@media only screen and (max-width: 767px) {
    .login .login-wrapper {
        width: 100%;
        padding-bottom: 10px
    }
}

.login .login-wrapper .logo {
    margin: 0 0 5rem;
    padding: 0 15px
}

    .login .login-wrapper .logo a img {
        width: 180px
    }

@media only screen and (max-width: 767px) {
    .login .login-wrapper .logo a img {
        width: 120px
    }
}

.login .login-wrapper .form-title {
    color: #373c3c;
    font-size: 22px;
    font-family: "Averta-Bold",sans-serif;
    margin-bottom: 0
}

.login .login-wrapper .lang-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: right
}

    .login .login-wrapper .lang-container .lang {
        font-family: "Averta-Regular",sans-serif;
        font-size: 14px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding-top: .3rem;
        padding-bottom: .3rem;
        padding-left: 1.25rem;
        padding-right: 2.25rem;
        background: url("../../global/img/portlet-collapse-icon.png") 92%/10% no-repeat #ffb6ad;
        border-radius: 5px !important;
        border: 0px solid rgba(0,0,0,0);
        box-shadow: 1px 1px 3px rgba(0,0,0,.3)
    }

        .login .login-wrapper .lang-container .lang:focus-visible {
            outline: none
        }

.login .login-wrapper .content {
    width: 320px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    background: rgba(0,0,0,0);
    padding: 2rem
}

@media only screen and (min-width: 1700px) {
    .login .login-wrapper .content {
        margin: 0 auto 40px
    }
}

@media only screen and (min-width: 1400px)and (max-width: 1699px) {
    .login .login-wrapper .content {
        margin: 0 auto 15px
    }
}

@media only screen and (min-width: 768px)and (max-width: 1023px) {
    .login .login-wrapper .content {
        margin: 0 auto 30px
    }
}

@media only screen and (max-width: 767px) {
    .login .login-wrapper .content {
        margin: 0 auto 15px
    }
}

.login .login-wrapper .content::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    background: linear-gradient(0deg, rgb(197 43 47), rgb(239 94 97));
    z-index: -1;
    border-radius: 8px
}

.login .login-wrapper .content .form-group-box {
    position: relative
}

    .login .login-wrapper .content .form-group-box .form-control-icon {
        height: 2rem;
        position: absolute;
        right: 1rem;
        top: 1rem
    }

.login .login-wrapper .content .form-control {
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #ffffd0;
    border-radius: 3px !important;
    text-align: left;
    color: #373c3c;
    height: 38px;
    padding: .5rem 1.5rem;
    box-shadow: 1px 1px 3px rgba(0,0,0,.3) !important
}

    .login .login-wrapper .content .form-control:focus {
        border: none;
        border-bottom: 1px solid #f0cf53;
        transition: all .3s ease-in
    }

    .login .login-wrapper .content .form-control.verification-code {
        font-size: 12px
    }

.login .login-wrapper .content .registerLink {
    color: #b6852d !important;
    font-weight: 600
}

.login .login-wrapper .content .captcha-box {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 3px !important;
    overflow: hidden;
    box-shadow: 1px 1px 3px rgba(0,0,0,.3) !important
}

    .login .login-wrapper .content .captcha-box .refresh-captcha-icon {
        height: inherit;
        padding: .75rem
    }

.login .login-wrapper .content .forget-password-block {
    margin-top: .5rem;
    text-align: right
}

    .login .login-wrapper .content .forget-password-block a {
        color: #373c3c !important;
        font-size: 13px;
        font-weight: 600
    }

        .login .login-wrapper .content .forget-password-block a:hover, .login .login-wrapper .content .forget-password-block a:focus {
            color: #fff !important;
            text-decoration: none
        }

.login .login-wrapper .content .forget-form .form-title {
    display: block;
    font-size: 14px;
    margin-bottom: 10px
}

.login .login-wrapper .content .forget-form .form-subtitle {
    font-size: 14px;
    margin-top: 15px;
    color: #fff
}

.login .login-wrapper .btn.red:not(.btn-outline) {
    background: linear-gradient(0deg, rgba(182, 133, 45, 0.9), rgba(246, 221, 124, 0.9));
    color: #000;
    border: none;
    margin-top: 30px
}

.login .login-wrapper .btn, .login .login-wrapper .btn-default {
    background: #ffb6ad !important;
    color: #373c3c !important;
    border: 1px solid #ffc800;
    border-radius: 3px !important
}

    .login .login-wrapper .btn:hover, .login .login-wrapper .btn-default:hover {
        color: #373c3c !important;
        background: #e47b7e !important;
        border: none !important
    }

.login .login-wrapper .copyright {
    display: none;
    width: 100%
}

@media only screen and (min-width: 1400px)and (max-width: 1699px) {
    .login .login-wrapper .copyright {
        margin: 0 !important
    }
}

@media only screen and (max-width: 767px) {
    .login .login-wrapper .copyright {
        margin: 0
    }
}
/*# sourceMappingURL=login-custom.min.css.map */
