body {
  background: url("../../assets/images/foto_inicio.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.wrapper {
  width: 325px;
  max-width: 90vw;
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
  box-shadow: 0px 0px 25px 17px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.login {
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  background: #ffffff;
  border: 0.1px solid #254669;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 160px;
  max-width: 80vw;
}

.titulo {
  font-size: clamp(10px, 4vw, 14px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #898989
}

.titulo2 {
  font-size: clamp(8px, 4vw, 12px);
  font-weight: 800;
  letter-spacing: 0.042em;
  color: #898989
}

.titulo3 {
  font-size: clamp(11px, 4vw, 15px);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #898989
}


input.clase_login[type="text"],
input.clase_login[type="tel"],
input.clase_login[type="password"],
select.clase_login {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  transition: 0.2s;
  border-radius: 5px;
}


input.clase_login + i.fa,
select.clase_login + i.fa {
  color: #fff;
  position: absolute;
  margin-top: -38px;
  opacity: 0;
  transition: 0.2s;
}


input.clase_login:focus,
select.clase_login:focus {
  outline: none;
  font-size: 1em;
  color: #254669;
  border-color: #254669;
  border-left-width: 47px;
}


input.clase_login:focus + i.fa,
select.clase_login:focus + i.fa {
  opacity: 1;
  left: 30px;
}


input.clase_login.has-value,
select.clase_login.has-value {
  outline: none;
  font-size: 1em;
  color: #254669;
  border-color: #254669;
  border-left-width: 47px;
}


input.clase_login.has-value + i.fa,
select.clase_login.has-value + i.fa {
  opacity: 1;
  left: 30px;
}



.login button.boton_ingreso {
  width: 100%;
  padding: 10px;
  background: #254669;
  color: #fff;
  font-weight: 600;
  font-size: clamp(11px, 4vw, 15px);
  position: absolute;
  left: 0;
  bottom: 0;
  border: none;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.boton_ingreso {
  position: relative;
  overflow: hidden;
}

.boton_ingreso:after {
  content: "";
  position: absolute;
  width: 115%;
  height: 70px;
  background: #15293d;
  transform: translateY(-45%) skew(0deg) scale(0);
  left: -6%;
  transition: 0.4s ease-in-out;
}

.boton_ingreso:hover:after {
  transform: translateY(-45%) skew(0deg) scale(1);
}

.boton_ingreso span {
  position: relative;
  z-index: 1;
}

.copyright {
  text-align: center;
  font-size: clamp(6px, 2vw, 12px);
  position: absolute;
  bottom: 10px;
  right: 0px;
  color: #fff;
  z-index: 1;
}

.copyright img {
  width: clamp(30px, 5vw, 50px);
  transition: 0.8s;
}

.copyright img:hover {
  width: clamp(60px, 4vw, 80px);
  transition: 0.4s;
}

@-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: 0.3s;
  -moz-animation-duration: 0.3s;
  animation-duration: 0.3s;
}