/*
/* custom.css o style.css */

header {
  background: linear-gradient(to right, #0f3b6f, #3c8ae3);
}

.card {
  min-height: 100%;
}
@media (max-width: 576px) {
  .navbar-logo {
    margin-bottom: 20px; /* Ajusta según necesites */
  }
}

.card-img-top {
  width: 100%;
  height: 100px; /* Ajusta la altura del imagen */
}

main {
  margin-top: 100px;
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-a-header:hover {
  transform: scale(1.1); /* Aumenta ligeramente el tamaño */
}
@media (max-width: 576px) {
  .navbar-logo {
    margin-bottom: 20px;
  }

  .card {
    margin-bottom: 20px;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group .form-control {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .navbar-logo {
    margin-bottom: 20px;
  }

  .card {
    margin-bottom: 20px;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group .form-control {
    margin-bottom: 10px;
  }
}

/* Añadir espacio debajo del header fijo */
body {
  padding-top: 40px;
  /* Ajusta este valor según la altura de tu header */
}

/* Animación sutil para los enlaces del navbar */
.navbar-nav .nav-item .nav-link {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #ff6347;
  transform: scale(1.1);
  text-decoration: underline;
}
.copy-icon {
  cursor: pointer;
  font-size: 16px;

  color: #0f3b6f;
}
#copyFeedbackUser,
#copyFeedbackPassword {
  color: #0f3b6f;
}
.text_diagonal {
  position: absolute; /* Para posicionarlo libremente */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
  transform: rotate(-45deg); /* Rotar 45 grados (ajusta el valor) */
}
.status_ips {
  font-size: 22px;
  color: #0f3b6f;
}
.footer-1 {
  background: linear-gradient(to right, #0f3b6f, #1d72d4);
}
.footer-2 {
  background: linear-gradient(to right, #051f3d, #0c52a3);
}
#backgroundCarousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#backgroundCarousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.input-icon-container {
  position: relative;
}

.input-icon {
  position: absolute;
  transform: translateY(-50%);
  margin-top: px; /* Ajusta la posición vertical del icono */

  /* Ajusta la posición horizontal del icono */
  width: 20px;
  height: 20px;
  pointer-events: none; /* Asegura que el icono no interfiera con los clics en el input */
}

.input-icon-container .form-control {
  padding-left: 35px; /* Ajusta el padding para dejar espacio para el icono */
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  display: none; /* Oculta la pantalla de carga por defecto */
}
.img-carrusel {
  width: 100%;
  height: 100vh; /* Altura completa de la ventana gráfica */
  object-fit: contain; /* Mantiene la proporción de la imagen y la recorta para llenar el contenedor */
}

    #overlayImage {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1050;
      max-width: 90%;
      max-height: 90vh;
      /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);*/
      display: none;
      cursor: pointer;
      border: none;
    }

  
    #imageBackdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      /* Fondo semi-transparente */
      z-index: 1040;
      /* Por debajo de la imagen pero encima de la página */
      display: none;
      /* Inicialmente oculta */
    }