.wrap-input100 {
  /*width: 100%;*/
  position: relative;
  border-bottom: 2px solid #d9d9d9;
}

.input100 {
    /*
  font-family: Poppins-SemiBold;
  */
  font-size: 18px;
  color: #555555;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  padding: 0 5px;
  border: none;
  outline: none !important;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}


.focus-input100::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;
  */
}


/*
.focus-input100::after {
  font-size: 18px;
  color: #999999;
  line-height: 1.2;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
*/



.input100:focus + .focus-input100::after {
  top: -20px;
  font-size: 15px;
}


.input100:focus + .focus-input100::before {
  width: 100%;
}

.login-background{
  background-image: url(../img/slider-1.jpg); width: 40%;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-position: 20% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .login-background{
    display: none;
  }
}