



.auth-wrapper .lavalite-bg {
    height: 100vh;
    position: relative;
    width: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-wrapper .lavalite-bg .lavalite-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient( 180deg, rgba(56, 62, 94, 0.2) 0%, rgba(54 ,71, 92, 0.8) 100%);
  }
  .bg-white {
    background-color: #e2e2e2 !important;
}

/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

.logo-centered{text-align: center; margin-bottom: 30px;  z-index: 9999}
.logo-centered .text{font-weight: 600; font-size: 20px; margin-top: 10px; color: #fff}

.custom-checkbox .custom-control-label {
    line-height: 24px;
    color: #fff;
    font-size: 15px;
}
.container-login .text-right a {
    line-height: 24px;
    color: #fff;
    font-size: 15px;
}

.container-login {
  width: 100%;  
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;  
}
input:focus::-webkit-input-placeholder { color:transparent;font-weight: 600; }
input:focus:-moz-placeholder { color:transparent; font-weight: 600;}
input:focus::-moz-placeholder { color:transparent; font-weight: 600;}
input:focus:-ms-input-placeholder { color:transparent;font-weight: 600; }

input::-webkit-input-placeholder { color: #1a2d45; font-weight: 600;}
input:-moz-placeholder { color: #1a2d45;font-weight: 600;}
input::-moz-placeholder { color: #1a2d45;font-weight: 600;}
input:-ms-input-placeholder { color: #1a2d45;font-weight: 600;}


label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}



.wrap-login {
  width: 500px;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px 40px;
  background: #fff;
  box-shadow: 0 0 11px 5px rgba(0, 0, 0,.07);
    /* background: linear-gradient(135deg, rgba(46, 52, 81, 0.4) 0%, rgba(28, 33, 104, 0.95) 100%); */

}

.login-form-title {
  font-size: 25px;
  color: rgb(49, 48, 48);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 30px;
}

.input {
  font-size: 16px;
  color: #1a2d45;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 50px;
  background: #f1f1f1;
  padding: 0 5px 0 38px;
  font-weight: 600;
}

/*---------------------------------------------*/ 
.focus-input {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #29ace1;
}

.focus-input::after {
  font-family:"Font Awesome 5 Free";
  font-size: 20px;
  color: #29ace1;
 content: "\f007";
  display: block;
  width: 100%;
  position: absolute;
  top: 9px;
  left: 5px;
  padding-left: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.focus-l::after {
  font-family:"Font Awesome 5 Free";
  
 content: "\f058";
 
}

.input:focus {
  padding-left: 5px;
}

.input:focus + .focus-input::after {
  top: -22px;
  font-size: 18px;
}

.input:focus + .focus-input::before {
  width: 100%;
}

.has-val.input + .focus-input::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input + .focus-input::before {
  width: 100%;
}

.has-val.input {
  padding-left: 5px;
}



.login-form-btn {
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  padding: 12px 40px 16px;
  border-radius: 50px;
  background: #29ace1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  font-weight: 600;
}



.login-form-btn:hover {
  color: #29ace1;
  border: solid 1px;
  border-color: #29ace1;
    background: none
    /* background: linear-gradient(135deg, rgba(242, 145, 38, 0.6) 0%, rgba(242, 145, 38, 0.95) 100%); */
}

/*------------------------------------------------------------------
[ Responsive ]*/
@media (max-width: 960px) {
  .logo-centered .img-b{width: 300px}

}


@media (max-width: 760px) {
  .container-login {
 margin-top: 100px
  
}
}




