/*================= RESET CSS ========================*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
}
ol,ul { list-style: none;}
table { border-collapse: collapse; border-spacing: 0;}
*,
::before,
::after{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
/*================= RESET CSS ========================*/

/*================= gLobal CSS ========================*/

body, * {
    font-family: 'DiscoverSans', ;
}
 

.discover_medium{
    font-family:'DiscoverSans-Medium', sans-serif;
}
.discover_book{
    font-family: 'DiscoverSans-Book';
}
.popins_medium{
    font-family:'Poppins', sans-serif ;
  }
  .form-title{
    color: #000000;
    letter-spacing: 0.48px;
    font-weight: 500;
  }
  .form-content-text{
     opacity: 0.6;
    line-height: 1.38;
    color: #090c11;
    font-family: 'DiscoverSans-Book' sans-serif;
  }
 .bg-formLogin{
     border-radius: 4px;
     background-color: #ffffff;
 }
 .custom_login-form{
     /* margin-bottom: 0 !important; */
 }
      /* -------login form---- */
      
  .form_container{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
    .center_div{
        border-radius: 10px;
        position: relative;
         box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
        
    }
    .logo-url{
        position: absolute;
        top: 13px;
        left: 13px;
        z-index: 999 !important;
    }
    /* .right_content{
        margin-right: 20px !important;
    } */
    .welcome-text{
        font-size: 18px;
    }
    .orange_span{
        color: #ef812c;
        font-weight: 600;
    }

    .lognin_nav-tab{
        border-bottom: none;
    }
    .nav-item.active{
        border-bottom: 3px solid #ef812c !important;
        width: 70px;
        border-radius: 10px;
        margin: 0 .5rem;
    }
    .nav-item{
        border-bottom: 3px solid rgba(0, 0, 0, 0.1) !important;
        border-radius: 10px;
        width: 70px;
        margin-right: .9rem;
        margin: 0 .5rem;
    }
    .nav_link-tab{
        position: relative;
    }
    .lognin_nav-tab >.nav-item .nav-link{
        border: none;
        padding: 0;
    }
    .custom_login-form{
        background-color: #fff !important;
        box-shadow: none;
    }

    .nav_tab_heading, .form_nav_ul{
        padding-left: 16px;
        padding-right: 16px;
    }
    .custom_form-input{
        border-radius: 0 !important;
    }
     .custom_form-input::placeholder {
         opacity: 0.7;
         color: #828282;
         font-size: 14px;
          font-family: "DiscoverSans", sans-serif;
     }
    .b-b-none{
        border-bottom: none !important;
    }
    .b-left-radius{
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .btn_home:hover{
        color:rgb(255, 255, 254);
    }
    .btn_home{
        background:#23233f;
        opacity: 0.5;
        border-radius: 25px;
        font-size: 20px;
        font-weight:500;
        padding: 6px 18px !important;
        letter-spacing: .5px;
        color:#fff;
         font-family: "DiscoverSans-Semibold";
    }
    .btn_inactive:hover{
        color: #222222;
    }
    .btn_inactive{
        border: 1px solid  rgb(219, 217, 217);
        color: #222222;
    }
    .form_right-arrow.active{
        color: #fff !important;
    }
    .input__group-customright{
        background-color: transparent !important;
        border-bottom: .05px solid rgb(219, 217, 217) !important;
        border-left: none !important;
        border-right: none;
        border-top: none;
        padding-right: 5px;
    }
      /* --custom  checkbox-- */
 .container-checkbox{
display: block;
position: relative;
padding-left: 20px;
margin-bottom: 12px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}

/* Create a custom checkbox */
.checkmark {
position: absolute;
top: 0;
left: 0;
height:15px;
width: 15px;
border-radius: 2px;
background-color:#fff !important;
border: solid 0.5px #b2b2b2;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
background-color: #ccc;
}
.container-checkbox input ~ .checkmark {
background-color:rgb(35, 35, 63);
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
background-color: #0262d3 !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
content: "";
position: absolute;
display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
left: 4px;
top: 0px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
  .check-rem-span{
    font-size: 12px;
    color: #000000;

  }
  .register_link:hover{
      color: #0262d3;
      text-decoration: none;
  }
  .register_link{
      font-weight:bold;
      color: #0262d3;
      text-decoration: none;
       font-family: "DiscoverSans-Bold", sans-serif !important;
  }
  .go_back h6{
    font-family: "DiscoverSans-Medium";
    font-size: 16px;
    color: #23233f;
    font-weight: 400;
  }


  @media only screen and (max-width:1199px){
    .form-title{
        font-size: 20px !important;
    }
    .go_back h6 {
        font-size: 18px;
    }
 }
  @media only screen and (max-width:767px){
    .center_div{
        /* padding-bottom: 16px; */
    }
    .right_content{
        margin-right: auto !important;
    }
    /* .form_container .pr_sm{
        padding-right: 0 !important;
    } */
     .form_container {
     	position: unset;
     	top: unset;
     	left: unset;
     	-webkit-transform: unset;
     	-ms-transform: unset;
     	transform: unset;
     }
    .right_content{
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .custom_input-group-text, .custom_form-input{
         padding: .675rem .75rem !important;
    }
    .sign-in-right{
         height: 380px !important;
         border-top-right-radius: 0 !important;
         border-bottom-left-radius: 10px;
         margin-top: 10px;
    }
    /* update */
    .loginSec .notAccountregister {
        display: none;
    }
    .loginSec .logo {
        display: block !important;
    }
    .loginSec .center_div{
        top: 5rem;
    }
    .loginSec .right_content.bg-white.width_ie-100 {
        background-color: #0163e8 !important;
    }
    .loginSec .custom_login-form {
        background-color: #0163e8 !important;
        box-shadow: none;
    }
    .loginSec .center_div{
        border-radius: 18px;
    }
    .loginSec .right_content {
        margin-top: 0px;
        margin-bottom: 0px;
        padding-top: 30px;
        padding-bottom: 30px;
        border-radius: 18px;
    }
    .loginSec h1 {
        color: #fff;
    }
    .loginSec .bg-formLogin label{
        color: #fff !important;
    }
    .loginSec .check-rem-span{
        color: #fff;
    }
    .loginSec #onForgot, .remember-btn{
        color: #fff !important;
    }
    .loginSec span.input-group-text.input__group-customright.cursor_pointer.radius__bottom__right {
        background-color: #fff !important;
    }
    .loginSec .btn.btn-signIn.active {
        background: #022453;
    }
    .loginSec p.registerLink {
        display: block !important;
        color: #fff;
        text-align: center;
        margin-top: 17px;
    }
    .loginSec p.registerLink a {
        color: #022453;
        font-weight: 600;
        text-decoration: none;
    }
    
 }
 @media only screen and (max-width:374.98px){
      .logo__brand{
          width: 110px;
      }
      .container-checkbox{
          padding-left: 20px;
      }
 }

