/* =============================================== */
/* ===================GENERAL PAGE================ */ 
/* =============================================== */
body {
    font-family: 'Poppins', sans-serif !important;
}

/* ===================LOGIN PAGE================== */ 
.login-authentication-wrapper {
    height: 100vh;
    .text-blue {
        color: #409af3;
    }
    .container {
        padding-top: 5.5rem;
        .card {
            width: 90%;
            h5 {
                font-size:larger;
                font-weight: 600;
                padding-bottom: 15px;
                border-bottom: 1px solid #b2b2b438;
                .mdi-login {
                    vertical-align: baseline !important;
                    &::before{
                        font-weight: 600;
                    }
                }
            }
            h1 {
                font-weight: 800; 
            }
            a.register-link{
                color: #4b93da;
                transition: 0.4s;
                text-decoration: underline !important;
                &:hover {
                    .mdi-arrow-right-thin {
                        transition: 0.2s;
                        margin-left: 1%;
                    }
                }
            }
            form {
                a.forgot-pass-link {
                    color: #4b93da;
                    transition: 0.4s;
                }
            }
            /* &::before {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                width: 50%;
                height: 100%;
                background-image: url('../img/branding/sk.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: top right;
                opacity: 0.03;
                transform: rotate(20deg);
                z-index: 0;
            } */
        }
        .side-login-logos {
            width: 85%;
            opacity: 0.90;
        }
    }
    &::before {
        content: "";
        background-repeat: no-repeat;
        background-size: cover; 
        background-position: center;
        position: absolute;
        z-index: -1;
        height: 120vh;
        width: 100%;
        top: 0%;
        right: 0%;
        bottom: 0%;
        left: 0%;
    }
}

/* ================REGISTRATION PAGE============== */ 
.register-authentication-wrapper {
    .container {
        padding-top: 5.5rem;
    }
    &::before {
        content: "";
        background-repeat: no-repeat;
        background-size: cover; 
        background-position: center;
        position: absolute;
        z-index: -1;
        height: 190vh;
        width: 100%;
        top: 0%;
        right: 0%;
        bottom: 0%;
        left: 0%;
    }
}

/* ==================================================================== */
/* ===============================LIGHT THEME========================== */ 
/* ===============================LIGHT THEME========================== */ 
/* ==================================================================== */

.light-style {

    .login-authentication-wrapper {
        .container {
            .card {
                h1 {
                    color:#393939;
                }
                h5 {
                    color: #939393;
                }
                p{
                    color:#484554;
                }
                a.register-link{
                    transition: 0.4s;
                    &:hover {
                        color: #fcd20f;
                    }
                }
                form {
                    a.forgot-pass-link {
                        &:hover {
                            color: #fcd20f !important;
                        }
                    }
                }
            }
        }
        &::before {
            background-image: url('../img/img-pages/light-auth-bg.png');
        }
    }

    .register-authentication-wrapper {
        &::before {
            background-image: url('../img/img-pages/light-auth-bg.png');
        }
    }

    .landing-footer {
        .footer-top {
            background-color: #e7e7e7;
            color: #484554;
            .container {
                .footer-title {
                    font-weight: 700;
                }
                .footer-text {
                    font-size: 13px;
                }
                .mdi-chevron-right {
                    color: #666cff;
                }
                a.footer-link {
                    color: #484554;
                    transition: 0.3s;
                    position: relative;
                    z-index: 2;
                    font-size: 13px;
        
                    &:hover {
                        color: #666cff;
                    }
                }
            }
            .footer-bg {
                position: absolute;
                top: 70px;
                z-index: 1;
                right: 25px;
                opacity: 0.05;
                width: 45%;
            }
        }
        .footer-bottom {
            .footer-text,
            i {
                color: #ffff;
            }
    
            i:hover {
                transition: 0.3s;
                color: #666cff;
            }
        }
    }

}

/* ===================================================================== */
/*==============================END OF LIGHT PAGE======================= */ 
/* =============================END OF LIGHT PAGE======================= */ 
/* ===================================================================== */




/* ===================================================================== */
/* ================================DARK THEME=========================== */ 
/* ================================DARK THEME=========================== */ 
/* ===================================================================== */

.dark-style {
    .login-authentication-wrapper {
        .container {
            .card {
                h1 {
                    color:#f3ecff;
                }
                h5 {
                    color: #aca9b1;
                }
                p{
                    color: #d2d2e8;
                }
                a.register-link{
                    transition: 0.4s;
                    &:hover {
                        color: #fcd20f;
                    }
                }
                form {
                    a.forgot-pass-link {
                        &:hover {
                            color: #fcd20f !important;
                        }
                    }
                }
            }
        }
        &::before {
            background-image: url('../img/img-pages/dark-auth-bg.png');
        }
    }

    .register-authentication-wrapper {
        &::before {
            background-image: url('../img/img-pages/dark-auth-bg.png');
        }
    }

    .landing-footer {
        .footer-top {
            background-color: #33354e;

            .container {
                .footer-title {
                    font-weight: 700;
                }
                .footer-text {
                    font-size: 13px;
                }
                .mdi-chevron-right {
                    color: #666cff;
                }
                a.footer-link {
                    color: #f7f6ff;
                    transition: 0.3s;
                    position: relative;
                    z-index: 2;
                    font-size: 13px;
                    &:hover {
                        color: #8685ef;
                    }
                }
            }

            .footer-bg {
                position: absolute;
                top: 70px;
                z-index: 1;
                right: 25px;
                opacity: 0.05;
                width: 45%;
            }
        }

        .footer-bottom {
            .footer-text,
            i {
                color: #ffff;
            }
            i:hover {
                transition: 0.3s;
                color: #666cff;
            }
        }
    }
}

/* ===================================================================== */
/*===============================END OF DARK PAGE======================= */ 
/* ==============================END OF DARK PAGE======================= */ 
/* ===================================================================== */


/* =============================================== */
/* ==================FOR MOBILE=================== */ 
/* =============================================== */

@media screen and (max-width: 1024px){
    body {
        font-size: 15px !important;
        nav {
            .navbar-brand {
                .app-brand-text {
                    font-size: 22px;
                }
            }
           
        }
        .login-authentication-wrapper {
            &::before {
                height: 100vh;
            }
            .container {
                padding-left: 0;
                padding-right: 0;
                .row-container {
                    .card-container {
                        .card {
                            width: 100%;
                            padding: 6% !important;
                            box-shadow: none;
                            h5 {
                                font-size: 22px;
                            }
                            h1 {
                                font-size: 30px;
                            }
                            p {
                                font-size: 15px;
                            }
                            form {
                                .button-container {
                                    justify-content: center !important;
                                    flex-direction: row;
                                    button {
                                        width: 50% !important;
                                        padding: 3%;
                                    }
                                }
                            }
                        }
                    }
                    .img-container {
                        display: flex;
                    }
                }
            }
        }
        .landing-footer {
            .footer-top {
                h6 {
                    font-size: 18px !important;
                }
                .footer-text {
                    font-size: 13px !important;
                    margin-bottom: 0 !important;
                }
                a.footer-link, h6.footer-title {
                    font-size: 13px !important;
                }   
                .footer-bg {
                    top: 60px !important;
                    right: -70px !important;
                    width: 55% !important;
                } 
            }
            .footer-bottom {
                img {
                    width: 75px;
                }
                .footer-text {
                    font-size: 15px !important;
                }
            }
            
        }
    }
}

@media screen and (max-width: 768px) {
    body {
        nav {
            .navbar-brand {
                padding: 0;
                .tf-icons {
                    &::before {
                        font-size: 2.5rem;
                    }
                }
                .app-brand-text {
                    font-size: 1.9rem;
                }
            }
        }
        .login-authentication-wrapper {
            height: 100vh;
            .container {
                padding-top: 75px;
                .row-container {
                    justify-content: center;
                    .card-container {
                        width: 70%;
                        .card {
                            h5 {
                                font-size: 18px;
                            }
                            h1 {
                                font-size: 28px;
                            }
                            p {
                                margin-bottom: 1.5rem !important;
                            }
                        }
                    }
                    .img-container {
                        display: none;
                    }
                }
            }
        }
        .landing-footer {
            .footer-top {
                .app-brand-link {
                    justify-content:center;
                }
                .footer-logo-description {
                    text-align: center;
                }
                .app-brand-logo{
                    img {
                        margin-left: 0 !important;
                    }
                }
                .footer-text {
                    font-size: 16px !important;
                    margin-bottom: 0 !important;
                }
                a.footer-link, h6.footer-title {
                    font-size: 14px !important;
                }
                .footer-bg {
                    top: 550px !important;
                    right: -70px !important;
                    width: 60% !important;
                }
            }
            .footer-bottom {
                img {
                    width: 65px;
                }
                .footer-text {
                    font-size: 15px !important;
                }
            }
        }
    }
}

@media screen and (max-width: 426px) {
    body {
        nav {
            .navbar-brand {
                padding: 0px 5%;
                .tf-icons {
                    &::before {
                        font-size: 2.2rem;
                    }
                }
                .app-brand-logo {
                    width: 8%;
                    img {
                        width: 100%;
                    }
                }
                .app-brand-text {
                    font-size: 1.4rem;
                }
            }
        }
        .login-authentication-wrapper {
            &::before {
                height: 120vh;
            }
            .container {
                padding-top: 5.5rem;
                .row-container {
                    .card-container {
                        padding: 4%;
                        width: 100%;
                        .card {
                            h1 {
                                font-size: 24px;
                            }
                        }
                    }
                }
            }
        }
        .landing-footer {
            .footer-top {
                .app-brand-link {
                    align-items: center;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: center;
                }
                .footer-logo-description {
                    text-align: left;
                }
                .app-brand-logo {
                    margin-bottom: 1rem;
                    img {
                        width: 135px;
                    }
                }
                .footer-text {
                    font-size: 14px !important;
                }
                a.footer-link, h6.footer-title {
                    font-size: 14px !important;
                }
                .footer-bg {
                    top: 1036px !important;
                    width: 100% !important;
                }
            }
        }
    }
} 

@media screen and (max-width: 376px) {
    body {
        font-size: 14px !important;
        nav {
            .navbar-brand {
                .tf-icons {
                    &::before {
                        font-size: 25px;
                    }
                }
                .app-brand-logo {
                    img {
                        width: 100%;
                    }
                }
                .app-brand-text {
                    font-size: 1.2rem;
                }
            }
        }
        .login-authentication-wrapper {
            height: 100vh;
            .container {
                .row-container {
                    margin-left: 0 !important;
                    margin-right: 0 !important;
                    .card-container {
                        padding-left: 0 !important;
                        padding-right: 0 !important;
                        .card {
                            h1 {
                                font-size: 22px;
                            }
                            p {
                                font-size: 14px;
                            }
                            form {
                                .button-container {
                                    width: 100%;
                                    flex-direction: column-reverse !important;
                                    button, a {
                                        width: 100% !important;
                                        font-size: 14px;
                                        padding: 10px 20px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .landing-footer {
            .footer-top {
                .footer-bg {
                    top: 1086px !important;
                }
            }
            .footer-bottom {
                .footer-text {
                    font-size: 14px !important;
                }
            }
        }
    }
}

@media screen and (max-width: 320px) {
    body {
        font-size: 13px !important;
        nav {
            .navbar-brand {
                .app-brand-logo {
                    width: 7%;
                }
                .app-brand-text {
                    font-size: 1rem !important;
                    padding-left: 0 !important;
                }
            }
        }
        .login-authentication-wrapper {
            .container {
                .row-container {
                    .card-container {
                        .card {
                            h5 {
                                font-size: 16px;
                            }
                            h1 {
                                font-size: 20px;
                                margin-bottom: 1rem !important;
                            }
                            p {
                                font-size: 13px;
                                margin-bottom: 1rem !important;
                            }
                            form {
                                .button-container {
                                    button, a {
                                        font-size: 13px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .landing-footer {
            .footer-top {
                /* .app-brand-link {
                    align-items: center;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: center;
                } */
                .app-brand-logo {
                    /* margin-bottom: 1rem; */
                    img {
                        width: 200px;
                    }
                }
                h6 {
                    font-size: 16px !important;
                }
                .footer-text {
                    font-size: 13px !important;
                }
                a.footer-link, h6.footer-title {
                    font-size: 13px !important;
                }
                .footer-bg {
                    top: 1280px !important;
                }
            }
            .footer-bottom {
                .footer-text, i {
                    font-size: 13px;
                }
            }
        }
    }
}
