.site-content {
    background-color: #efefef;
}


.content-bg {
    min-height: calc(100vh - 186px);
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    height: 100%;
}

.height-box {
    padding: 80px 0;
}

.auth-text-box {
    padding-top: 40px;
}

.auth-input-container {
    padding: 30px 40px;
    border-radius: 6px;
    border: 1px solid #D3D3D3;
}

.auth-text-box {
    position: relative;
}

.auth-description-text {
    max-width: 401px;
    margin: 20px auto 0;
    line-height: 18px;
}

.pass-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.pass-wrap input {
    padding: 0;
    width: 54px;
    height: 54px;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: #17242A;
    text-align: center;
}



.loader {
    position: fixed;
    visibility: hidden;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.3;
    background: url("../../../assets/dashboard/images/Loader.gif") 50% 50% no-repeat rgb(249,249,249);
}

/********************** */
/* Responsive CSS Start */
/***********************/

/* Media: 1366px */
@media only screen and (max-width: 1366px) {
    .content-bg {
        min-height: calc(100vh - 178px);
    }
}

/* Media: 1199px */
@media only screen and (max-width: 1199px) {
    .content-bg {
        min-height: calc(100vh - 130px);
    }
}

/* Media: 1024px */
@media only screen and (max-width: 1024px) {
    .height-box {
        padding: 60px 0;
    }

}

/* Media: 991px */
@media only screen and (max-width: 991px) {
    .height-box {
        padding: 60px 0;
    }

    .auth-text-box {
        padding-top: 0;
    }

    .content-bg {
        min-height: calc(100vh - 103px);
    }

}


/* Media: 767px */
@media only screen and (max-width: 767px) {
    .height-box {
        padding: 0;
    }

    .auth-input-container {
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Media: 575px */
@media only screen and (max-width: 575px) {
    .content-bg {
        min-height: calc(100vh - 97px);
    }

    .auth-input-container {
        padding: 20px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .pass-wrap {
        gap: 16px;
    }

    .pass-wrap input {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* Media: 480px */
@media only screen and (max-width: 480px) {
    .content-bg {
        min-height: calc(100vh - 139px);
    }
}