/*
ESTILOS DE LOGIN
*/
.card-logo {
  background: rgba(255, 255, 255, 0);
  /* Fondo blanco con 10% de opacidad */
  border-radius: 5px;
  backdrop-filter: blur(10px);
  /* Efecto de desenfoque */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  /* Sombra */
  padding: 5px;
  color: white;
  /* Color del texto */
  height: auto;
  /* Alto del contenedor */
}

.card-body {
  height: auto;
  display: block;
}

.login-box {
  width: 100%;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(6, 27, 42, 1) 0%,
    rgba(57, 143, 208) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  flex: 1;
  left: 0px;
  top: 0%;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.subtitulo-login {
  color: white;
}

.login-box-front {
  width: 90%;
}

.login-logo {
  margin-bottom: 0px !important;
}

.login-logo a {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.login-card-body {
  background: transparent;
  color: white;
  backdrop-filter: blur(10px);
}

.input-group .form-control {
  width: calc(100% - 45px) !important;
  /* Ajusta el ancho de los inputs */
  background: transparent;
  color: white;
}

.input-group .input-group-text {
  width: 45px !important;
  /* Ajusta el ancho del icono */
  color: white;
}

.input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  /* Cambia el color del placeholder a blanco con 70% de opacidad */
}
.main-cont {
  height: 100vh;
  overflow: hidden;
  /* Evitar scroll innecesario */
  display: flex;
  flex-direction: column;
  /* Para asegurar el apilamiento */
}
.login-page {
  position: relative;
  overflow: hidden;
}

.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/login/fondo-login-der.png");
  background-size: cover; /* Ajustar el tamaño de la imagen */
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8; /* Ajustar la opacidad */
  z-index: -1; /* Colocar la imagen detrás del contenido */
}
/*.login-page {
  background-image: url("/static/login/fondo-login-der.png");
  background-size: cover;
  background-position: center;
}*/

.row.h-100 {
  height: 100%;
  /* Hacer que las columnas llenen el contenedor */
}

.section-imgs-nt img {
  width: 0px;
  flex-grow: 1;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.5s ease;
}

.section-imgs-nt img:hover {
  cursor: crosshair;
  width: 300px;
  opacity: 1;
  filter: contrast(120%);
}
/*
html,
body,
.container-fluid,
.row,
.col-derecha,
.section-imgs-nt {
  height: 100%;
  margin: 0;
  padding: 0;
}

.section-imgs-nt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.section-imgs-nt img {
  height: 100%;
  width: auto;
  flex-grow: 1;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.5s ease;
}

.section-imgs-nt img:hover {
  cursor: crosshair;
  opacity: 1;
  filter: contrast(120%);
}
*/
.col-izquierda,
.col-derecha {
  display: flex;
  align-items: center;
  /* Centrar contenido verticalmente */
  justify-content: center;
  /* Centrar contenido horizontalmente */
  overflow: hidden;
  /* Evitar desbordamientos */
  text-align: center;
  /* Ajustar texto al centro */
}

.col-izquierda {
  /*background-color: red; /* Color de prueba */
  min-height: 56vh;
  /* Altura mínima para pantallas pequeñas */
}

.col-derecha {
  color: white;
  /*background-color: bisque; /* Color de prueba */
  min-height: 44vh;
  /* Altura mínima para pantallas pequeñas */
}

.col-derecha > div.row {
  width: 100%;
}

.row-creditos {
  text-align: center;
  font-size: 1.1em;
}

.row-solicitar-cuenta {
  text-align: center;
  font-size: 1rem;
  margin-top: 1.5rem;
}

.row-empresas > div {
  text-align: center;
}

.cont-empresa {
  font-size: 1.1rem;
  /*border-right: 4px solid #FFFFFF;*/
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.login-logo-empresa {
  height: auto;
  /*filter: drop-shadow(0px 4px 4px rgba(255, 255, 255, 0.4));*/
}

.link_empresa {
  color: #e56b9a;
  cursor: pointer;
  text-align: center;
}
/*
.link_empresa:hover {
    color: #a0155a;
    font-size: 1.2rem;
}
*/
.user-image {
  text-align: center;
}

.user-image img {
  margin-top: 5px;
  opacity: 0.9;
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
}

#id_email {
  font-size: 1.3rem;
}

#id_password {
  font-size: 1.3rem;
}

#olvide-pass,
#solicitar-cuenta {
  color: #ffffff;
  font-weight: bold;
}

#olvide-pass:hover,
#solicitar-cuenta:hover {
  color: #e8f045;
}

#btn-ingresar {
  width: 95%;
  font-size: 1rem;
  height: 30px;
  background: #3f94fcea;
}

#btn-ingresar:hover {
  width: 100%;
}

/* Extra small devices (xs) */
@media (max-width: 575px) {
  .main-cont {
    height: 110vh;
  }
  .col-derecha > div.row {
    position: relative;
    top: -8%;
  }
  .login-box {
    height: 110vh;
    background: transparent;
    padding-top: 0px;
    margin-top: 0px;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: flex-start !important;
    align-items: flex-start !important;
  }
  .login-logo {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .titulo-bienvenido {
    width: 70%;
    height: auto;
    margin-top: 1.5rem;
  }
  .row-subtitulo-bienvenido {
    font-size: 1rem;
    text-align: center;
  }
  .row-subtitulo-bienvenido > div > p {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .row-descripcion {
    font-size: 1rem;
  }

  .row-creditos {
    font-size: 1rem;
  }
  .row-solicitar-cuenta {
    margin-top: 0.8rem;
  }

  .row-empresas {
    margin-top: 0.8rem;
  }
}

/* Small devices (sm) */
@media (min-width: 576px) and (max-width: 767px) {
}

/* Medium devices (md) */
@media (min-width: 768px) and (max-width: 991px) {
}

/* Large devices (lg) */
@media (min-width: 992px) and (max-width: 1199px) {
}

/* Extra large devices (xl) */
@media (min-width: 1200px) {
}
