.loader-page {
  position: fixed;
  z-index: 25000;
  background: rgb(0, 0, 0);
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-image: url('../img/Victecnology_logo_pag.png'); /* Ruta de la imagen */
  background-size: 5rem; /* Ajusta el tamaño de la imagen */
  background-position: center;
  background-repeat: no-repeat;
  animation: pulse 1.5s ease-in-out infinite; /* Animación dinámica para la imagen */
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); } /* Cambié a 1.1 para un efecto más sutil */
}

.loader-page::before {
  content: "";
  position: absolute;
  border: 2px solid rgb(58, 50, 176);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-sizing: border-box;
  border-left: 2px solid rgba(50, 150, 176, 0);
  border-top: 2px solid rgba(50, 150, 176, 0);
  animation: rotarloads 1s linear infinite;
  transform: rotate(0deg);
}

@keyframes rotarloads {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.loader-page::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(77, 50, 176, 0.5);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-sizing: border-box;
  border-left: 2px solid rgba(50, 150, 176, 0);
  border-top: 2px solid rgba(50, 150, 176, 0);
  animation: rotarload 1s ease-out infinite;
  transform: rotate(0deg);
}
 

@keyframes rotarload {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
