/*login css*/

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

:root {
    --primary-color: #b2bcc8;
    --secondary-color: #006c64;
    --blue-color:#00b8eb;
    --red-color:#9f2f39;
}

body {
    /*font-family: 'Nunito', sans-serif;*/
    /* font-family: 'Gotham', sans-serif;
    font-family: 'Gotham Black', sans-serif;
    font-family: 'Gotham Light', sans-serif;
    font-family: 'Gotham Thin', sans-serif;
    font-family: 'Gotham XLight', sans-serif;
    font-family: 'Gotham Book', sans-serif; */
    font-family: 'Gotham Ultra', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
    line-height: 22px;
    font-weight: 400;
    margin: 0px;
}

a {
    color: inherit;
    text-decoration: none !important
}

/*a:hover {*/
/*    color: var(--secondary-color);*/
/*}*/

:after,
:before {
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

p {
    margin: 0px;
}

.ifc_auth_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    background-color:#ececec;
}

.ifc_auth_wrapper .ifc_detail_wrapper {
    padding: 4%;
    background-color: #ececec;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.ifc_detail_wrapper .ifc_login_box {
    max-width: 820px;
    width: 100%;
}
.ifc_imgbox img {
    width: 100%;
    max-width: 900px;
    max-height: 500px;
    object-fit: contain;
}
.ifc_detail_wrapper .ifc_login_box>img {
    margin-bottom: 15px;
    width:100%;
    max-width: 620px;
    max-height: 200px;
    object-fit: contain;
}

.ifc_login_box h1 {
    font-weight: 400;
    font-size: 36px;
    margin-bottom: 13px;
    color: #3d454d;
    line-height:1.1;
}

.ifc_login_box h1>span {
    font-weight: 700;
    color: #006c64;
}

.ifc_login_box p {
    margin-bottom: 23px;
    font-size: 16px;
    color: #818f9e;
    padding: 20px 0px 0px 0px;
}

.ifc_input_wrapper {
    margin-bottom: 20px;
    max-width: 480px;
}

.ifc_input input {
    border: none;
    height: 50px;
    padding: 0 18px 0 52px;
    width: -webkit-fill-available;
    width: -moz-fill-available;
    outline: none;
    width: 100%;
    margin-bottom: 7px;
}

.ifc_input span {
    position: absolute;
    left: 18px;
    top: 45%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    display: flex;
}

.ifc_input input::placeholder {
    color: var(--primary-color)
}

.ifc_input {
    position: relative;
}


.ifc_rememberMe_wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 26px;
    max-width: 480px;
}
.ifc_forgotLink > a {
    padding-right: 12px;
}
.ifc_forgotLink > a:nth-child(2) {
    padding-right: 0;
}
.ifc_checkbox {
    position: relative;
    padding: 0 30px 0 0px;
    cursor: pointer;
}

.ifc_checkbox input {
    display: none;
}

.ifc_checkbox>span {
    height: 18px;
    width: 19px;
    border: 1px solid #d3d8eb;
    background-color: transparent;
    position: absolute;
    content: '';
    border-radius: 3px;
    right: 0;
}

.ifc_checkbox>span:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    border: 2px solid #ffffff;
    border-top: none;
    border-right: none;
    left: 4.1px;
    top: 4px;
    transform: rotate(-45deg) scale(0);
}

.ifc_checkbox input:checked~span {
    border-color: var(--blue-color);
    background-color: var(--blue-color);
}

.ifc_checkbox input:checked~span:after {
    transform: rotate(-45deg) scale(1);
}
.ifc_login_button {
    display: flex;
}
.ifc_login_button > a {
    margin-right: 10px;
}
a.ifc_btn.sign_up_button {
    background: #9f2f39;
}
.ifc_btn {
    background-color: #00b8eb;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 60px;
    margin-bottom: 30px;
    padding: 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    max-width: 180px;
}

.ifc_btn:hover {
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.2)
}

.ifc_loginModal {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0 0 0 / 50%);
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.ifc_modalInner_dv {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 10px #cecece;
    color: #000;
    text-align: center;
    text-transform: capitalize;
    font-size: 16px;
}

.ifc_modalInner_dv span {
    text-transform: lowercase;
}

.ifc_loginModal.showModal {
    visibility: visible;
    opacity: 1;
}

.ifc_helpLink {
    display: inline-block;
    margin: 20px auto;
    width: 100%;
    text-align: center;
    position: relative;
}

.ifc_helpLink:before,
.ifc_helpLink:after {
    content: "";
    height: 1px;
    width: calc(50% - 30px);
    background-color: #ebeef8;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    line-height: 30px;
}

.ifc_helpLink:after {
    left: auto !important;
    right: 0;
}

.ifc_bottom_wrapper ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.ifc_bottom_wrapper ul li {
    display: block;
    width: 33.33%;
    max-width: 100px;
    list-style: none;
    margin: 0px 10px;
}
.ifc_bottom_wrapper ul li a img {
    width: 100%;
    display: block;
}
.ifc_bottom_wrapper ul li:nth-child(1){
    margin-right:45px;
}
.ifc_bottom_wrapper ul li:nth-child(1) a img{
    width:130px;
}
.ifc_imgbox.ifc_imgbox_1 {
    /* position: relative; */
    top: 100px;
}
.ifc_login_footer_color {
    background-color: var(--red-color);
    padding: 10px 0px;
}
.ifc_login_footer_menu {
    padding: 0px 60px 0px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.ifc_login_menu {
    margin: 0;
    padding: 0;
    line-height: normal;
}

ul.ifc_login_menu li{
   display: inline-flex;
   padding-right:30px;
}
ul.ifc_login_menu li a {
    font-size: 14px;
    color: #ffffff;
}
ul.ifc_social_icon{
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.ifc_social_icon li{
    display: inline-block;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}
ul.ifc_social_icon li a {
    background: transparent;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
ul.ifc_social_icon li:hover a{
    background-color: #ffffff;
}
ul.ifc_social_icon li:hover a svg{
  
    fill:#9f2f39;
}
ul.ifc_social_icon li a svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
}
ul.ifc_social_icon li.ifc_insta_active a {
    background-color: #ffffff;
}
ul.ifc_social_icon li.ifc_insta_active a svg{
    fill:#9f2f39;
}
/* responsive css*/
@media(max-width:1600px){
    /* .ifc_auth_wrapper .ifc_detail_wrapper {
        padding: 60px 100px 60px 100px;
    } */
    .ifc_imgbox.ifc_imgbox_1 {
        right: 0;
    }
}
@media (max-width:1199px) {
    .ifc_auth_wrapper .ifc_detail_wrapper {
        padding: 50px;
    }
    
    .ifc_detail_wrapper .ifc_imgbox img {
        width: 100%;
    }
}
@media(max-width:991px){
    .ifc_auth_wrapper .ifc_detail_wrapper{
        grid-template-columns : 1fr;
    }
    ul.ifc_login_menu li {
        padding-right: 10px;
    }
    .ifc_imgbox.ifc_imgbox_1 {
        display: none;
    }
}
@media (max-width:768px) {
    .ifc_detail_wrapper .ifc_imgbox {
        display: none;
    }
    .ifc_login_footer_menu{
        display: block;
    }
    ul.ifc_login_menu li {
     
        padding: 10px;
       
    }
    ul.ifc_login_menu{
        text-align: center;
    }
    ul.ifc_social_icon {
      
        text-align: center;
        padding-top: 10px;
    }
    
}
@media(max-width:400px){
    .ifc_rememberMe_wrapper {
        display: block;
}
}
