/* BODY */
body {
  color: white;
  background-color: black;
}
/* * * * */

/* ICONO */
.icon-home {
  position: absolute;
  top: 3.5rem;
  left: 5rem;
  height: 4rem;
  cursor: pointer;
  z-index: 100;
}
/* * * * */

/* FONDO */
.img-background {
	position: absolute;
	height: 100%;
	top: 4rem;
	left: 6rem;
}
/* * * * * */

/* SECCION */
.section-login {
  position: absolute;
  display: flex;
  align-items: center;
  width: 60%;
  height: 100%;
  text-align: center;
  top: 0;
  right: 0;
}

.section-login h1 {
  color: #ffffff;
}

.section-login-div {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 80%;
  height: 100%;
  align-items: center;
}

.section-login-ul {
  width: 100%;
  text-align: right;
}

.section-login-ul li {
  margin-bottom: 0.5rem;
}

.section-login-ul li i {
  color: gray;
}

.li-title {
  font-size: 2rem;
  line-height: 4.5rem;
  margin-bottom: 1rem !important;
}

.li-title-mobile {
  display: none;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

.li-text {
  font-size: 1.3rem;
  margin-bottom: 6rem !important;
}

.li-text-mobile {
  display: none;
  margin-bottom: 6rem !important;
}

.li-sub-text {
  font-size: 1.1rem;
  margin-bottom: 6rem !important;
}

.extra-space-1 {
  margin-bottom: 1rem !important;
}

.extra-space-2 {
  margin-bottom: 2rem !important;
}

.p-recover-pass {
  cursor: pointer;
  color: #f5d033;
}

.input-container {
  width: 80%;
  left: 20%;
  height: 3.5rem;
}

.section-login-input {
  width: 100%;
  height: 100%;
  color: black;
  background-color: white;
  padding-left: 1em;
  padding-right: 1em;
  border-style: none;
  font-family: Poppins;
  font-size: 1.3rem;
}

.section-login-input::placeholder {
  color: black;
}

.section-login-input:focus {
  border-color: black;
  outline: 0;
}

.button-rect {
  font-size: 2rem;
  font-weight: bold;
}

.button-container {
  width: 55%;
  left: 45%;
  height: 4.5rem;
}
/* * * * * * * * */

/* RESPONSIVE */
/* Portátiles (menor a 1400px) */
@media (max-width: 1400px) {
  .img-background {
    top: 6rem;
    left: 2rem;
  }
}

/* Tablets (menor a 1024px) */
@media (max-width: 1024px) {
  .section-login {
    width: 100%;
    justify-content: center;
  }

  .section-login-div {
    width: 90%;
  }

  .section-login-ul {
    text-align: center;
  }

  .input-container {
    width: 100%;
    left: 0;
  }

  .li-sub-text {
    text-align: right;
  }
}

/* Estilos específicos para modo vertical */
@media (max-width: 1024px) and (orientation: portrait) {
  .li-text {
    margin-bottom: 35rem !important;
  }

  .img-background {
    top: 21rem;
    left: 19rem;
    height: 39%;
  }

}

@media (max-width: 480px) and (orientation: portrait) {
  .icon-home {
    top: 2rem;
    left: 3rem;
    height: 3.5rem;
  }

  .li-title,
  .li-text {
    display: none;
  }

  .li-title-mobile,
  .li-text-mobile {
    display: block;
  }

  .li-title-mobile {
    margin-top: 5rem !important;
  }

  .li-text-mobile {
    margin-bottom: 23rem !important;
  }

  .img-background {
    top: 15rem;
    left: 7rem;
    height: 45%;
  }

  .input-container {
    height: 2.5rem;
  }

  .section-login-input {
    font-size: 1.2rem;
  }

  .extra-space-2 {
    margin-bottom: 1rem !important;
  }

  .li-sub-text {
    margin-bottom: 1rem !important;
  }

  .button-rect {
    font-size: 1.5rem;
  }

  .button-container {
    height: 3.5rem;
  }
}
/* * * * * * * * */