@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
/* Generaly Styles */
body,
body::before,
body::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    font-weight: 600;
    outline: none;
}

a:hover {
    text-decoration: none;
    outline: none;
}
a:focus {
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin-bottom: 0;
}
ul {
    padding: 0;
    list-style-type: none;
}
/*****Top bar*****/
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1.5px solid #e0e4e7;
}
.title-area > div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.title-area-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.title-area-wrap img {
    width: 30px;
    margin: 0 5px;
}
.top-bar .whats-new {
    flex-basis: 50%;
}
.top-bar .title-area {
    flex-basis: 50%;
    align-items: center;
}
.left-border {
    position: relative;
}
.left-border::before {
    content: "";
    position: absolute;
    width: 1.5px;
    height: 18px;
    background-color: #d6d5db;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}
.whats-new-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.whats-new-wrap p {
    color: #46b444;
    font-size: 14px;
    margin-right: 15px;
}
.top-bar-icon {
    margin: 0 5px;
    list-style-type: none;
    display: flex;
    padding: 0;
}
.top-bar-icon li {
    cursor: pointer;
}
.top-bar-icon li {
    margin: 0 8px;
    color: #92929e;
}
.top-bar-icon li:hover {
    color: #46b444;
}
.top-bar-icon li svg path:hover {
    fill: rgb(13 105 125);
}

.profile {
    display: flex;
    align-items: center;
    padding-left: 5px;
}
.profile-pic span {
    display: block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 100%;
    margin-right: 5px;
}
.profile-pic span img {
    width: 100%;
}

.notification i {
    position: relative;
}
.notification i:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: red;
    top: -5px;
    right: -3px;
}
.dropdown-menu.show {
    right: 0;
    left: inherit;
}
/*********Main body******/

.main-body {
    display: flex;
    flex-wrap: wrap;
}
.main-body .menu-bar .navigation-ul li .impact_no {
    display: none;
}
.main-body .menu-bar.open .navigation-ul li .impact_no {
    display: inline;
}
.main-body .menu-bar .navigation-ul li img {
    margin: 0 32%;
}
.main-body .menu-bar.open .navigation-ul li img {
    margin: 0;
}
.main-body .menu-bar .green_mate_list ul li span {
    display: none;
}
.main-body .menu-bar.open .green_mate_list ul li span {
    display: inline-block;
}

.main-body .menu-bar .green_mate_list ul li img {
    margin-right: 30%;
    margin-left: 30%;
}
.main-body .menu-bar.open .green_mate_list ul li img {
    margin-right: 10px;
    margin-left: 0px;
}

.main-body .menu-bar {
    /* flex-basis: 15%; */
    border-right: 1.5px solid #e0e4e7;
    padding: 0px 0;
    width: 100px;
    height: calc(100% - 62px);
    overflow-y: auto;
    position: fixed;
    transition: all 0.5s ease;
}
.main-body .content-bar {
    /* flex-basis: 85%; */
    position: fixed;
    right: 0;
    width: calc(100% - 100px);
    height: calc(100% - 62px);
    background: #e5e5e5;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.5s ease;
}
.main-body .menu-bar::-webkit-scrollbar-track,
.main-body .content-bar::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 10px;
    background-color: #f5f5f5;
}

.main-body .menu-bar::-webkit-scrollbar,
.main-body .content-bar::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

.main-body .menu-bar::-webkit-scrollbar-thumb,
.main-body .content-bar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
    background-color: #ddd;
}
.main-body .menu-bar.open_menu {
    width: 230px;
}

.main-body .menu-bar.open {
    width: 230px;
}
.main-body .content-bar.open {
    width: calc(100% - 230px);
    overflow-x: hidden;
}
/*******Menubar******/
.menu-bar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px 0;
}
.menu-bar-title h6 {
    font-weight: 600;
    font-size: 14px;
}
.menu-bar-title i {
    color: #46b444;
}
.menu-bar-title i.menu-open {
    font-size: 20px;
}
.menu-bar-title .menu-icon,
.menu-bar-title .menu-open {
    display: none;
}
.main-body .menu-bar .menu-bar-title .menu-open,
.main-body .menu-bar.open .menu-bar-title .menu-icon {
    display: block;
}
.main-body .menu-bar.open .menu-bar-title .menu-open {
    display: none;
}
.menu-bar-title i:hover {
    cursor: pointer;
}
.navigation-ul {
    padding: 0;
    list-style-type: none;
    margin-top: 15px;
}
.navigation-ul li {
    cursor: pointer;
    /* display: flex; */
    align-items: center;
    margin: 0px 0;
    padding: 10px 15px;
    position: relative;
}
.navigation-ul li ul li {
    margin: 5px 0;
}

.navigation-ul > li::before,
.navigation-ul > li.active::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 30px;
    top: 21px;
    left: -5px;
    transform: translateY(-50%);
    background-color: #333;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    transition: all 0.5s ease;
}
.navigation-ul li:hover::before,
.navigation-ul li.active::before {
    left: -1px;
}
.navigation-ul li i {
    color: #95969b;
    margin-right: 10px;
}
.navigation-ul li .fa-rocket {
    transform: rotate(-45deg);
}
.navigation-ul li {
    justify-content: center;
}
.main-body .menu-bar.open .navigation-ul li {
    justify-content: flex-start;
}
.navigation-ul li span {
    opacity: 0;
    display: none;
    cursor: pointer;
    margin-left: 14px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #8a92a6;
    transition-property: all;
    transition-duration: 2s;
    transition-delay: 3s;
    transition-timing-function: linear;
}
.main-body .menu-bar.open .navigation-ul li span {
    opacity: 1;
    display: inline-block;
}
.navigation-ul li:hover,
.navigation-ul li.active {
    background-color: #d3f6f2;
}
.navigation-ul li:hover i,
.navigation-ul li:hover span,
.navigation-ul li.active i,
.navigation-ul li.active span {
    color: #8a92a6;
}

.tooltip-ul {
    padding: 20px 15px !important;
}
.tooltip-ul li {
    margin-bottom: 10px;
    text-align: center;
}
.menu-bar.open .tooltip-ul li {
    text-align: left;
}
.tooltip-ul li .info-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-right: 13px;
}
.tooltip-ul li .info-icon.blue {
    background-color: #54b5fc;
}
.tooltip-ul li .info-icon.green {
    background-color: #42d398;
}
.tooltip-ul li .info-icon.yellow {
    background-color: #ffc24b;
}
.tooltip-ul li .info-icon.red {
    background-color: #fe974a;
}
.tooltip-ul li .info-text {
    color: #b4b3b8;
    text-transform: capitalize;
    font-size: 18px;
    display: none;
}
.menu-bar.open .tooltip-ul li .info-text {
    display: inline-block;
}
/*********Content bar*******/
.plan-top-bar {
    background-color: #f2f9ff;
    padding: 15px 25px;
    border-bottom: 1.5px solid #e0e4e7;
}
.plan-top-bar .row {
    align-items: center;
}
.plan-common .plan-title {
    position: relative;
}
.plan-common .plan-title span {
    padding-right: 10px;
}
.plan-common .plan-title::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 5px;
    top: 50%;
    background-color: #e1e4eb;
    transform: translateY(-50%);
    border-radius: 10px;
}
.plan-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.plan-stage .plan-title {
    flex-basis: 12%;
}
.plan-stage .plan-bar {
    flex-basis: 20%;
}
.plan-title {
    color: #bdc0c7;
    font-size: 14px;
}
.plan-bar span,
.plan-bar {
    width: 100%;
    display: block;
    height: 5px;
    border-radius: 25px;
    background-color: #e1e4eb;
}
.plan-common.active .plan-title {
    color: #000;
}
.plan-common.active .plan-title::after {
    background-color: #4fb5ff;
}
.plan-stage.active .plan-title {
    color: #000;
}
.plan-div {
    padding: 0 15px;
}
.preview-div {
    padding: 0 15px 0 10px;
}
.plan-stage {
    padding-left: 10px;
}

/*******plan-content-sec****/
.plan-content-sec {
    padding: 35px 15px;
}
.plan-content-sec h4 {
    font-weight: 700;
}
.plan-content-sec .nav-pills .nav-link {
    font-size: 14px;
    padding: 0.65rem 1rem !important;
    position: relative;
    overflow: hidden;
    color: #68676d;
    font-weight: 500;
}
.plan-content-sec .nav-pills .nav-link.active::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -4px;
    background-color: #46b444;
    transition: all 0.5s ease;
    border-radius: 100px;
}
.plan-content-sec .nav-pills .nav-link.active {
    background-color: #fff !important;
    color: #46b444 !important;
}

.tab-section {
    border-bottom: 1.5px solid #e0e4e7;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.right-side-tab-sec {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.right-side-tab-input-field input {
    color: #000;
    font-size: 14px;
}
.right-side-tab-input-field input::placeholder {
    color: #000;
    font-size: 14px;
}
.right-side-ul-icon {
    display: flex;
}
.right-side-ul-icon li {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #95969b;
}
.right-side-ul-icon li i {
    font-size: 14px;
}
.right-side-ul-icon li.active,
.right-side-ul-icon li:hover {
    background-color: #4fb5ff;
    border: 1px solid #4fb5ff;
    color: #fff;
}
.navbar {
    border-bottom: 1px solid #e9ecef;
}

.navbar_align {
    justify-content: inherit !important;
}
.logo_font {
    font-style: normal;
    display: inline-block;
    font-weight: 700;
    font-size: 27px;
    line-height: 24px;
    align-items: center;
    color: #12c28a;
    padding: 26px 5px;
}
.profile-name {
    position: relative;
}
.profile-name span.name {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #232d42;
    display: block;
}
.profile-name span.gust {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #8a92a6;
    display: block;
}
.left-line {
    display: flex;
    align-items: center;
}
.right-line {
    display: flex;
    align-items: center;
}

.search_box {
    width: auto;
    height: 36px;
    margin: 22px 0px;
    background: #ffffff;
    border: 1px solid #a9e1ed;
    border-radius: 4px;
    position: relative;

    background: url("../images/Search.png") no-repeat left center;
    background-size: 16px;
    padding-left: 30px;
    background-position: 5px center;
}

.search_box:focus {
    box-shadow: none !important;
}
.menu_top {
    width: 30px;
    height: 30px;
    background: #0d697d;
    border-radius: 33px;
    flex: none;
    order: 0;
    flex-grow: 0;
    color: #fff;
    margin: 22px 24px;
}
.nav-item {
    margin: 17px 0px;
}
.menu_top i {
    text-align: center;
    display: block;
    padding: 9px;
    font-size: 12px;
}
.menu_top .right_view,
.menu_top .left_view {
    display: none;
}
i.fas.fa-arrow-right.right_view.open {
    display: block;
}
i.fas.fa-arrow-left.left_view.open {
    display: block;
}

.impact_no {
    top: 13px;
    background: red;
    width: 22px;
    height: 22px;
    color: #fff !important;
    border-radius: 30px;
    text-align: center;
    font-size: 12px !important;
    line-height: 20px;
    float: right;
    position: absolute;
    right: 15px;
}
.has_sub {
    position: relative;
}
.has_su::before {
    content: "" !important;
    position: absolute !important;
    background: url("../images/drop.png") no-repeat right !important;
    right: 0 !important;
    top: 0 !important;
}

/*Hello bar*/
.hello_bar {
    padding: 22px 15px;
    padding-bottom: 75px;
    background: linear-gradient(105.18deg, #ccf4fc -2.04%, #eaffd5 107.42%);
}
.hello_bar p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-align: left;
    color: #0d697d;
}

.hello_bar h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    text-align: left;
    color: #0d697d;
}

.annonce_btn {
    width: 210px;
    height: 40px;
    background: #11c478;
    border-radius: 4px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #ffffff;
    float: right;
    margin: 18px 0px 0px 0px;
    border: none;
}
.challenge_main {
    position: absolute;
    top: 160px;
}
.hello_wid {
    width: 97%;
    margin: 0px auto;
}
.challenge {
    width: 97%;
    background: #fff;
    padding: 20px 2px;
    filter: drop-shadow(0px 10px 13px rgba(17, 38, 146, 0.05));
    border-radius: 8px;
}
.challeng_data {
    padding-left: 151px;
    padding-top: 15px;
}
.challeng_img {
    position: absolute;
    top: -35px;
    border-radius: 100px;
    max-width: 121px;
    left: 20px;
}
.challeng_data h4 {
    color: #232d42;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
}

.challeng_data h4 span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #8a92a6;
}
.challeng_data p {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    color: #000000;
}
.data_list {
    text-align: right;
    padding: 16px 0px;
    float: right;
    display: inline-block;
    /* width: calc(100% - 700px); */
}
.data_list ul {
    margin: 0;
    padding: 0;
}
.data_list ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 22px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #11c478;
}
.data_list ul li.active {
    cursor: pointer;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #11c478;
    border-radius: 50px;
    color: #fff;
}

.data_list ul li:hover {
    cursor: pointer;
    background: #11c478;
    border-radius: 50px;
    color: #fff;
}
.points {
    width: 100%;
    margin: 5px 0px;
}
.points ul {
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
}
.points ul li:first-child {
    margin-left: 0px;
}
.points ul li {
    position: relative;
    margin-left: 38px;
    padding: 15px 5px;
    list-style-type: none;
    font-size: 14px;
    font-style: normal;
    color: #92959e;
}
.list_thumb {
    display: flex;
}
.points ul li .list_thumb {
    display: flex;
}
.points ul li .list_thumb p {
    white-space: nowrap;
}
.list_thumb {
    display: flex;
}
.list_thumb p,
.list_thumb span {
    white-space: nowrap;
    color: #92959e;
    font-size: 13px;
}

.points_bar {
    width: 63px;
    height: 63px;
    opacity: 0.65;
    border-radius: 16px;
}

.points_bar svg {
    margin: 20px auto;
    display: block;
}
.points_bar_week_bg {
    background: #fff2e9;
}
.points_bar_total_point_bg {
    background: #ede8ff;
}
.points_bar_teammember_bg {
    background: #eaf9ff;
}
.points_bar_totalteam_bg {
    background: #ffebef;
}

.list_thumb_data {
    padding-left: 10px;
}
.list_border::after {
    content: "";
    right: 0px;
    position: absolute;
    height: 40px;
    top: 0;
    border-right: 1px solid #ececee;
}
.action {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
.action h4 {
    display: block;
}
.action_plus {
    background: #e9ecef;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    margin: 0px 5px;
}
.action_plus img {
    cursor: pointer;
    text-align: center;
    text-align: center;
    margin: 60px auto;
    display: block;
}

.date_year {
    width: 100%;
    display: block;
    position: relative;
}
.date_year_head {
    text-align: center;
    width: 100%;
}
.date_year_head ul {
    margin: 0px auto;
    display: block;
}
.date_year_head ul li {
    display: inline-flex;
    list-style-type: none;
    padding: 10px 5px;
}
.date_year_head ul li i {
    color: #11c478;
}

.date_year_head h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}
.date_year_thumb {
    width: 100%;
    display: block;
}
.date_year_thumb ul {
    text-align: center;
}
.date_year_thumb ul li {
    cursor: pointer;
    list-style-type: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d9d9d9;
    display: inline-flex;
}

.date_year_list {
    width: 100%;
    display: block;
}
.date_year_list ul {
    text-align: center;
}
.date_year_list ul li {
    display: inline-flex;
    list-style-type: none;
    padding: 10px 10px;
}
.date_year_list ul li span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #434343;
    background: #d9d9d9;
    padding: 10px 10px;
    font-size: 13px;
    margin-right: 10px;
}
.date_year_list ul li p {
    padding: 10px 0px;
    font-size: 14px;
    color: #000000;
}
.date_year_bg {
    background: #11c478 !important;
    color: #fff !important;
}
.date_year_bg_not {
    color: #d9d9d9 !important;
}
.focus_head p {
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    font-size: 14px;
}
.focus_head h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 40px;
    color: #000000;
}
.focus_wid {
    width: 97%;
}
.focus_bottom ul {
    margin: 0;
}
.focus_bottom ul li {
    list-style-type: none;
    display: inline-flex;
    padding: 10px 10px;
    font-size: 14px;
    color: #000000;
}

.add_image_bn_img {
    max-height: 15px;
    padding-right: 10px;
}
.team_feed input {
    margin-top: 9px;
}
.add_image_bn span {
    white-space: nowrap;
    color: #000000;
    padding: 15px 0px;
    font-weight: 700;
    font-size: 12px;
}
.team_feed span {
    color: #000000;
    padding: 6px 7px;
    font-weight: 700;
    font-size: 12px;
}
.earn_point p {
    color: #000000;
    padding: 15px 7px;
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
}
.post_btn:hover {
    opacity: 0.9;
}
.post_btn {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background: #0d697d;
    border-radius: 50px;
    padding: 10px 50px;
    border: none;
}

.own_team {
    cursor: pointer;
    width: 100%;
    padding-bottom: 62px;
    background: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.own_team:hover {
    background: #0d697d;
    transition: all 0.5s ease;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}
.own_team:hover p,
.own_team:hover h4 {
    color: #ffffff;
}
.own_team p {
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    color: #000000;
    padding: 28px 10px;
}

.own_team h4 {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #000000;
}

.footer {
    background: #fff;
    padding: 10px 0px;
    margin-bottom: 35px;
}
ul.footer_links {
    margin: 10px 0px;
}
ul.footer_links li {
    display: inline;
    padding: 5px 10px;
    font-size: 13px;
}
.footer_logo img {
    max-width: 40px;
    max-height: 40px;
}

.footer_logo h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 0px;
    align-items: center;
    color: #12c28a;
    padding: 22px 0px;
}

.copy_right {
    font-size: 13px;
    color: #0f2137;
    opacity: 0.6;
    padding: 0px 10px;
}
.footer_logo img,
.footer_logo h4,
.footer_logo p {
    display: inline-block;
}
.green_mate_head h4 {
    text-transform: uppercase;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    color: #0d697d;
}
.green_mate_head p {
    text-transform: uppercase;
    font-size: 13px;
    text-align: center;
    color: #0d697d;
    line-height: 28px;
}
.green_mate {
    padding: 30px 0px;
    background: #d3f6f2;
}
.green_mate_list ul li img {
    margin-right: 10px;
}
.green_mate_list ul li {
    margin: 15px 20px 15px 20px;
    font-size: 14px;
}

.has-child {
    position: relative !important;
    z-index: 5;
}
.main-body .menu-bar ul.navigation-ul > li .sub-arrow {
    display: none;
}

.main-body .menu-bar.open ul.navigation-ul > li.has-child .sub-arrow {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    z-index: 105;
}
ul.navigation-ul > li.has-child .sub-arrow.rotate {
    transform: rotate(90deg);
}
ul.navigation-ul > li > ul {
    margin: 0 -15px;
    display: none;
}
.sticky-top {
    left: 0;
}
.section-content {
    /* background: #FFF; */
    margin: 15px;
    padding: 15px;
    min-height: calc(100% - 130px);
    border-radius: 5px;
}

.card-header {
    padding: 1rem;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body {
    font-family: Poppins;
}
.logo span {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: #12c28a;
}
.logo h4 {
    font-weight: 400;
}
.logo p,
.checkbox-content label,
.login-form .form-label {
    color: #8a92a6;
}
.login-form {
    text-align: left;
}
.login-form .form-control {
    border: 1px solid #0d697d;
}
.form-card .card {
    border: none;
}
.gradient-custom-2 {
    /* fallback for old browsers */
    background: fccb90;

    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(105.18deg, #ccf4fc -2.04%, #eaffd5 107.42%);

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(105.18deg, #ccf4fc -2.04%, #eaffd5 107.42%);
}
.gradient-custom-3 {
    background: #0d697d;
    padding: 10px 64px;
    border-radius: 43px;
    border: 1px solid #0d697d;
}
.form-text a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}
.gradient-form,
.gradient-form-rgt {
    position: relative;
    overflow: hidden;
}
.gradient-form:before,
.gradient-form-rgt:before {
    content: "";
    background: url("../images/plafera-lft.png") no-repeat;
    opacity: 0.1;
    width: 328px;
    height: 318px;
    /* z-index: 9999; */
    position: absolute;

    background-size: 56%;
    top: 0px;
    overflow: hidden;
}
.form-lft form {
    width: 80%;
    margin: 0 auto;
}
.gradient-form:before {
    left: 0px;
}
.gradient-form-rgt:before {
    left: 88%;
    background: url("../images/Ejike.png") no-repeat;
    background-size: 56%;
}
.success-cnt,
.usr-cnt {
    margin: 20% auto;
}
.success-cnt h1 {
    color: #0d697d;
    font-size: 60px;
    font-weight: 700;
    margin: 2rem 0;
}
.usr-cnt h1 {
    font-weight: 400;
    margin: 0.7rem 0;
}
.usr-cnt p {
    color: #8a92a6;
    width: 80%;
    margin: 0 auto;
}
.success-cnt p {
    line-height: 1.8;
}
@media (max-width: 988px) {
    .form-wdth {
        width: 80%;
        margin: 0 auto;
    }
}

body {
    font-family: Poppins;
}
.logo span {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: left;
    color: #12c28a;
}
.logo h4 {
    font-weight: 400;
}
.logo p,
.checkbox-content label,
.login-form .form-label {
    color: #8a92a6;
}
.login-form {
    text-align: left;
}
.login-form .form-control {
    border: 1px solid #0d697d;
}
.form-card .card {
    border: none;
}
.gradient-custom-2 {
    /* fallback for old browsers */
    background: fccb90;

    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(105.18deg, #ccf4fc -2.04%, #eaffd5 107.42%);

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(105.18deg, #ccf4fc -2.04%, #eaffd5 107.42%);
}
.gradient-custom-3 {
    background: #0d697d;
    padding: 10px 64px;
    border-radius: 43px;
    border: 1px solid #0d697d;
}
.form-text a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}
.gradient-form,
.gradient-form-rgt {
    position: relative;
    overflow: hidden;
}
.gradient-form:before,
.gradient-form-rgt:before {
    content: "";
    background: url("../images/plafera-lft.png") no-repeat;
    opacity: 0.1;
    width: 328px;
    height: 318px;
    /* z-index: 9999; */
    position: absolute;

    background-size: 56%;
    top: 0px;
    overflow: hidden;
}
.form-lft form {
    width: 80%;
    margin: 0 auto;
}
.gradient-form:before {
    left: 0px;
}
.gradient-form-rgt:before {
    left: 88%;
    background: url("../images/Ejike.png") no-repeat;
    background-size: 56%;
}
.success-cnt,
.usr-cnt {
    margin: 20% auto;
}
.success-cnt h1 {
    color: #0d697d;
    font-size: 60px;
    font-weight: 700;
    margin: 2rem 0;
}
.usr-cnt h1 {
    font-weight: 400;
    margin: 0.7rem 0;
}
.usr-cnt p {
    color: #8a92a6;
    width: 80%;
    margin: 0 auto;
}
.success-cnt p {
    line-height: 1.8;
}
@media (max-width: 988px) {
    .form-wdth {
        width: 80%;
        margin: 0 auto;
    }
}
