*{
  margin:0;
  padding: 0;
  box-sizing: border-box;
}
ul li{
  list-style: none;
  margin:0;
}
ul{
  margin-bottom: 0;
  padding: 0;
}
a,
a:hover,
a:visited,
a:focus,
a:active{
  text-decoration: none;
  outline: none;
}
button,button:hover,button:focus,input,input:focus{
  outline: none;
}
html,body{
  height: 100%;
}
body {
  font: 400 14px 'Roboto';
  -webkit-text-size-adjust: 100%;
  height: 100%;
  color: #737879;
  letter-spacing: 0;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-stroke:1px transparent;
  overflow-x: hidden;
  background: #eff3f6;
}
h1{
  font:700 36px 'Roboto', serif;
  color: #2b3132;
}
h2{
  font:500 30px 'Roboto', serif;
  color: #2b3132;
}
h3{
  font:normal 24px 'Roboto', serif;
  color: #2b3132;
}
p{
  line-height: 28px;
}
.clearfix{
  clear: both;
}
/************************************************
login css
*************************************************/
.logoLogin img{
  height: 80px;
  object-fit: contain;
}
.loginWrap{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-width: 100%;
  min-height: 100vh;
}
.loginContainer{
  max-width: 700px;
  position: relative;
  /* padding: 15px; */
  z-index: 5;
  width: 100%;
  margin: 0 auto;
}
.loginCard{
  border-radius: 2px;
  box-shadow: 0 4px 25px 0 rgba(0,0,0,.1);
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  /* padding: 15px; */
}
.loginRow{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.innerLoginBox{
  padding: 15px;
  box-sizing: border-box;
}
.colWidth{
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.loginColRight img{
  max-width: 100%;
}

.innerLoginBox h2{
  font-size: 20px;
  margin-bottom: 15px;
}
.formControl {
  display: block;
  width: 100%;
  min-height: 45px;
  padding: .375rem .75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background: #eff3f6;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.formGroup{
  margin-bottom: 15px;
}
.optionalSelect{
  position: relative;
}
.optionalSelect span{
  background: #fff;
  position: relative;
  padding: 0 10px;
  z-index: 5;
  font-size: 20px;
  /*display: block;*/
  text-transform: uppercase;
}
.innerLoginBox .socialLogin{
  width:100%;
}
.innerLoginBox .social-btn{
  font-weight: 100;
  color:white;
  /*width:49%;*/
  font-size: 0.9rem;
}
.innerLoginBox .facebook-btn{  background-color:#3C589C; }

.innerLoginBox .google-btn{ background-color: #DF4B3B; }

.innerLoginBox .form-reset, .innerLoginBox .form-signup{ display: none; }

.innerLoginBox .form-signup .social-btn{ width:210px; }

.innerLoginBox .form-signup input { margin-bottom: 2px;}
.socialLogin a {
  display: inline-block;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}
.socialLogin{
  margin: 15px 0 20px;
}
.passRemFlex{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  font-size: 13px;
}
.passRemLeft{
  display: flex;
  flex-basis: 50%;
}

.passRemRight{
  display: flex;
  flex-basis: 50%;
  justify-content: flex-end;
}
.passRemRight a{
  color:#ce901a
}
.signBtn{
  margin-top: 15px;
}
.signBtn input{
  background:#3949AB;
  border:0;
  border-radius: 5px;
  padding: 12px 40px;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: uppercase;
  transition: all ease-in-out 0.5s;
  box-shadow: 0 6px 12px rgba(57, 72, 170, 0.5);
}
.signBtn:hover input{
  box-shadow: 0 6px 12px rgba(57, 72, 170, 0.9);
}
.btmLog{
  margin: 15px 0 0;
}
/*****************************************
error page
*********************************************/
.fullColWidth{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.errorWrap{
  text-align: center;
  padding: 0 0 40px;
  max-width: 700px;
  margin: 0 auto;
}
.errorHead h1 {
  font-size: 252px;
  font-weight: 900;
  margin: 0px;
  color: #262626;
  text-transform: uppercase;
  letter-spacing: -40px;
  margin-left: -50px;
  position: relative;
  top: 35px;
}
.errorHead h1 span {
  text-shadow: -8px 0px 0px #fff;
}
.errorHead h2{
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
.errorHead p{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.errorBtn a {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 700;
  background-color: #3949AB;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.errorBtn{
  margin-top: 15px;
}
/********************************
custom checkbox
************************************/
.checkboxContainer {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border:1px solid #adabab;
}

/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark {
  background-color: #cc0c19;
  border:1px solid transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.errorMsg {
  color: #f00100;
  display: inline-block;
  margin: 2px 0 5px 0;
  font-size: 13px;
}
.alertSuccess {
   color: #155724;
   background-color: #d4edda;
   border-color: #c3e6cb;
}
.alertMsgbox {
    position: relative;
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    margin-top: 10px;
}
.alertError{
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

@media only screen and (max-width: 479px){
  .colWidth {
    -ms-flex: 0 0 50%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .loginColRight {
    display: none;
  }
  .innerLoginBox .social-btn{
    width: 100%;
    margin-bottom: 5px;
  }
  .logoLogin img{
    max-width: 70%;
  }
  .errorHead h1{
    font-size: 190px;
  }
 
}
@media only screen and (min-width: 480px) and (max-width: 767px){
  .colWidth {
    -ms-flex: 0 0 50%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .loginColRight {
    display: none;
  }
  .logoLogin img{
    max-width: 70%;
  }
  .errorHead h1{
    font-size: 190px;
  }
 

}
@media only screen and (min-width: 768px) and (max-width: 991px){
  .innerLoginBox .social-btn{
    width: 100%;
    margin-bottom: 5px;
  }
 
}