@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/*********************************** Estilos Generales ***********************************/

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif
}


/*********************************** Estilos Contenedor Login ***********************************/

.container-fluid {
  margin: 0;
  padding: 0;
}

.row-login {
  margin: 0;
  padding: 0;
  height: 100%;
}

.col-login {
  margin: 0;
  padding: 0;
  background-color: #e6e6e6;
}

.title {
  text-align: center;
  color: #393939;
  text-transform: uppercase;
  font-size: 35px;
}

@media (max-width: 1024px) {
  .title {
    font-size: 25px;
  }
}

@media (max-width: 321px) {
  .title {
    font-size: 22px;
  }
}

.shadow-left {
  position: relative;
}


/*********************************** Estilos del Imagen de Fondo ***********************************/

.back-img {
  position: fixed;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.back-img .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*********************************** Estilos del Fondo Animado ***********************************/

.bg {
  animation: slide 8s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #d2d2d27a 50%, #9595953a 50%);
  bottom: 0;
  left: -50%;
  opacity: .5;
  position: fixed;
  right: -50%;
  top: 0;
  z-index: -1;
}

.bg2 {
  animation-direction: alternate-reverse;
  animation-duration: 9s;
}

.bg3 {
  animation-duration: 10s;
}

.content {
  background-color: rgba(255, 255, 255, .8);
  border-radius: .25em;
  box-shadow: 0 0 .25em rgba(0, 0, 0, .25);
  box-sizing: border-box;
  left: 50%;
  padding: 10vmin;
  position: fixed;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(25%);
  }
}