/*
ESTILOS DE SOLICITUDES DE CUENTA
*/
.login-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  /* Asegura que ocupe al menos la altura completa de la ventana */
  background-image: url("/static/admin/img/fondoSolicitud.b11f9c69207e.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-control option {
  background: rgb(57, 143, 208);
  /* Color de fondo por defecto para las opciones */
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.form-control option[selected] {
  background: #178dee;
  /* Color de fondo para la opción seleccionada */
  color: white;
}

.login-box {
  padding: 20px;
  background: linear-gradient(
          180deg,
          rgba(11, 13, 15, 0.6) 0%,
          rgb(57, 143, 208, 0.6) 100%
        ) !important;
  border-radius: 10px;
  backdrop-filter: blur(0px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: absolute;
  height: inherit;
  width: 98%;
}

.login-card-body {
  background: transparent;
  color: white;
  padding: 0px;
}

.card-logo {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  padding: 10px;
  color: white;
  height: auto;
}

.footer-custom {
  background: linear-gradient(
          180deg,
          rgba(11, 13, 15, 1) 0%,
          rgb(57, 143, 208) 100%
        ) !important;
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: -moz-available;
  border-radius: 0px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: white;
  height: auto;
}

.row-map {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.col-formulario a {
  color: #7acfdb;
  font-size: 1.2rem;
}

.col-formulario:hover a {
  color: #e8f045;
}

.p-copyright {
  margin-top: 0;
  margin-bottom: 0;
}

/* .cont-link-contacto > a {
  color: #e56b9a;
  cursor: pointer;
}

.cont-link-contacto > a:hover {
  color: #a0155a;
} 

.columna-principal {
  margin-right: 3.5rem;
}*/

#btn-registrarse {
  width: 95%;
  font-size: 1rem;
  height: 30px;
  background: #e24949;
}

#btn-registrarse:hover {
  width: 100%;
}

/* Extra small devices (xs) */
@media (max-width: 575px) {
  .login-page {
    height: 120vh;
  }

  .login-box {
    margin-top: 0;
  }

  .cont-link-contacto {
    padding-bottom: 5%;
  }

  .columna-principal {
    margin-right: 0;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
}

/* Small devices (sm) */
@media (min-width: 576px) and (max-width: 767px) {
  .columna-principal {
    margin-right: 0;
  }
}

/* Medium devices (md) */
@media (min-width: 768px) and (max-width: 991px) {
  .columna-principal {
    margin-right: 0;
  }
}

/* Large devices (lg) */
@media (min-width: 992px) and (max-width: 1199px) {
  .columna-principal {
    margin-right: 0;
  }
}

/* Extra large devices (xl) */
@media (min-width: 1200px) {
}
