*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #ebe5df;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    color: #000000;
}
.btn_primary_white {
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}
.btn_primary_black{
    display: inline-block;
    background-color: #000000;
    border: 2px solid #000000;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}
.btn_secondary_black{
    display: inline-block;
    border: 2px solid #000000;
    padding: 9px 18px;
    border-radius: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    width: 100%;
    margin: 10px auto;
    text-decoration: none;
}
.section_btn {
    background-color: #DCD4CC;
    font-size: .9rem;
    font-weight: 400;
    border-radius: 25px;
    padding: .5rem 1.1rem;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #dcd4cc;
    color: #000000;
    text-decoration: none;
}
.disabled{
  opacity: .5;
  cursor: not-allowed;
}
.login-page{
    display: flex;
    min-height: 100vh;
}
.login_left_side{
    flex-grow: 1;
}
.login_box{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: 0 auto;
}
.login_left_side_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    margin-top: 10vh;
}
.login_fh_logo{
    max-width: 65%;
    width: 800px;
    margin: 2rem 0;
}

.login_header {
    text-align: center;
    width: 100%;
}

.login_heading_text {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
}

.form_wrapper {
    width: 100%;
    margin-top: 2rem;
}

.form-label {
    font-size: .9rem;
    font-weight: 400;
}

.form-control {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
    padding: .6rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 8px;
    outline: none;
    /* color: #7a7673; */
}

    .form-control:focus {
        background-color: #F3ECE6;
        border: 1px solid #000000;
        box-shadow: none;
    }
.form-control:disabled{
    background-color: #ebe5df;
}
input.invalid {
    border-color: #E95858;
}

input.valid {
    border-color: rgb(3, 187, 3);
}

.input-group-text {
    background-color: #F3ECE6;
    border: 1px solid #D1C6BB;
}

#inputPassword {
    border-right: 0;
}

    #inputPassword:focus + #passIcon {
        border-color: #000000;
    }

#passIcon {
    border-left: 0;
    cursor: pointer;
}

.login_right_side {
    background: url(../images/login_img.jpg);
    width: 60%;
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.error_msg {
    color: #E95858;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.success_msg {
    color: green;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.link_wrapper {
    text-align: center;
}

.forgot_pass_link {
    display: inline-block;
    color: #000000;
    font-size: 1rem;
    font-weight: 300;
    text-underline-offset: 3px;
    margin: 0 auto;
}

.bg_gradient {
    position: fixed;
    bottom: 0;
    background: linear-gradient(#EBE5DF, #FFF6C6);
    height: 248px;
    width: 100%;
    z-index: -1;
}

.legal {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}
.legal_device {
    margin-top: 1rem;
    display: none;
}
    .legal p, .legal_device p {
        font-size: 13px;
        font-weight: 400;
    }

/* NAVBAR */
#navIcon {
    width: 40px;
    height: 40px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    /* background: #000000;
    border: 1px solid #ffffff; */
    border-radius: 4px;
    margin-right: 5px;
    margin-left: 0px;
    top: 10px;
    z-index: 999;
    /* box-shadow: 0 0 12px rgb(0 0 0 / 15%), 0 0px 12px rgb(0 0 0 / 15%), inset 0 0 12px 4px rgb(0 0 0 / 30%); */
    position: fixed;
    left: 10px;
    display: none;
}

    #navIcon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 24px;
        background: #000000;
        border-radius: 5px;
        opacity: 1;
        left: 0;
        margin: 0 auto;
        right: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }
        /* .noscroll #navIcon span {
    background: #ffffff !important;
  }
  .noscroll #navIcon.open span {
    background: #fff !important;
  }
  .noscroll .share-container span img {
    -webkit-filter: brightness(0) invert(100%); /*Safari/Chrome */
        /* filter: brightness(0) invert(100%);
  } */
        /* .open span {
    background: #fff !important;
  } */
        #navIcon span:nth-child(1) {
            top: 11px;
        }

        #navIcon span:nth-child(2) {
            top: 18px;
        }

        #navIcon span:nth-child(3) {
            top: 25px;
        }

.navActive #navIcon span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.navActive #navIcon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navActive #navIcon span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

nav.activatedMenus {
    left: 0;
    transition: 0.4s ease;
}

.nav-container {
    border-bottom: none;
  }
  .nav-container {
    position: fixed;
    background: #f3ece6;
    border-right: 1px solid #D1C6BB;
    width: 220px;
    height: 100dvh;
    left: 0;
    z-index: 99;
    top: 0;
    overflow-y: auto;
    transition: 0.4s ease;
    padding: 1rem;
    display: flex;
}

    .nav-container.nav-main.toggle-nav {
        left: 0;
        z-index: 10;
    }

.navActive .nav-container {
    left: 0;
}

.nav-container .nav-ul {
    width: 100%;
    margin: auto;
    padding: 0;
}

.nav-container .nav-li {
    margin: 0;
    display: block;
}

.nav-container a {
    padding: .5rem .5rem .5rem 1rem;
    /* color: #fff !important; */
    transition: padding 0.5s ease;
    text-decoration: none !important;
    outline: none !important;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
}

    .nav-container a:hover img {
        opacity: 1;
    }

.nav-li a.active-nav, .nav-li a.active {
    color: #000 !important;
    background: #ffffff;
}

    .nav-li a.active-nav img, .nav-li a.active img {
        opacity: 1;
    }

.nav-li-icon {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
}

    .nav-li-icon img {
        display: block;
        opacity: .3;
        transition: all .3s ease-in-out;
    }

.nav_fh_logo {
    max-width: 140px;
    margin: .2rem 0 1.5rem;
}

.nav-container .bg_gradient {
    background: linear-gradient(#f3ece6, #FFF6C6);
    position: absolute;
    left: 0;
}

.nav-container-content {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    overflow-y: auto;
}

    .nav-container-content input.btn_primary_black {
        display: block;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1;
        padding-bottom: 10px;
        padding-top: 8px;
    }

.nav_user_porfile {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.user {
    display: flex;
    flex-grow: 1;
    align-items: center;
}

.user_icon {
    width: 20px;
    margin-right: 5px;
}

.nav_user_name {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.user_options {
    cursor: pointer;
}

.body_wrapper {
    display: flex;
}
.page_main_content{
  flex-grow: 1;
  margin-left: 220px;
}


.search_div{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.user__name{
    text-align: right;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
    .login-page {
        flex-direction: column-reverse;
    }

    .login_right_side {
        height: 300px;
        width: 100%;
        background-position: center;
    }

    .legal {
        display: none;
    }

    .login_left_side_wrapper {
        margin-top: 0;
    }

    .legal_device{
        display: block;
    }
}

@media screen and (max-width: 1021px) and (orientation: landscape) {
    .login-page {
        flex-direction: column-reverse;
    }

    .login_right_side {
        height: 300px;
        width: 100%;
        background-position: center;
    }

    .legal {
        display: none;
    }

    .login_left_side_wrapper {
        margin-top: 0;
    }

    .legal_device{
        display: block;
    }
}
@media screen and (max-width: 992px) {
    .login_box {
        width: 100%;
        padding: 1rem;
    }

    .login_fh_logo {
        margin: 0 0 1rem;
    }
    .page_main_content{
      padding-top: 3rem;
      width: 100%;
      margin-left: 0;
    }
    .nav-container {
        position: fixed;
        left: -220px;
        padding-top: 3rem;
    }
    #navIcon {
        display: block;
    }
    .dashBoardIEBlock{
        width: 50%;
    }
}

@media screen and (max-width: 740px) {
    .dashBoardIEBlock{
        width: 100%;
    }
}

