body,
html {
  background-image: url(../img/fondo.jpg);
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.logo_inicio {
  width: 100%;
}

button {
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

input {
  padding: 1.9rem 0rem 1rem 0.6rem !important;
  font-size: 1rem !important;
}

label {
  padding: 0.7rem 0rem 0rem 0.5rem !important;
}

.container-login {
  width: 100%;
  min-height: 100vh;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to top, #fcfcfc, #1a76bca8);
}

.wrap-login {
  width: 50%;
  margin: auto;
  background: #eceff1;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 10px 10px 50px 20px #1a76bc48;
}

.focus-efecto {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-efecto::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  padding-bottom: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #21d4fd, #1a75bc);
  background: -o-linear-gradient(left, #21d4fd, #1a75bc);
  background: -moz-linear-gradient(left, #21d4fd, #1a75bc);
  background: linear-gradient(left, #21d4fd, #1a75bc);
}

.focus-efecto::after {
  font-size: 15px;
  color: #999999;
  line-height: 1.2;
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  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-efecto::after {
  top: -15px;
}

.input100:focus + .focus-efecto::before {
  width: 100%;
}

.has-val.input100 + .focus-efecto::after {
  top: -15px;
}

.has-val.input100 + .focus-efecto::before {
  width: 100%;
}

.wrap-login-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto;
}

.login-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: -webkit-linear-gradient(
    right,
    #21d4fd,
    #1a75bc,
    #21d4fd,
    #1a75bc
  );
  background: -o-linear-gradient(right, #21d4fd, #1a75bc, #21d4fd, #1a75bc);
  background: -moz-linear-gradient(right, #21d4fd, #1a75bc, #21d4fd, #1a75bc);
  background: linear-gradient(right, #21d4fd, #1a75bc, #21d4fd, #1a75bc);
  top: 0;
  left: -100%;
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
}

.login-form-btn {
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  height: 50px;
}

.wrap-login-form-btn:hover .login-form-bgbtn {
  left: 0;
}

@media (max-width: 576px) {
  .wrap-login {
    width: 90%;
    padding: 20px 15px 33px 15px;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 0.5s;
}

footer {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 1.5vh;
}

footer img {
  width: 8vh;
  vertical-align: middle;
  transition: width 1s;
}

footer img:hover {
  width: 10vh;
}
