body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

/* Estilos para el contenedor de la pantalla de carga */
.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Estilo del círculo de carga */
.loader {
  border: 3px solid #E8BC01; /* Color de fondo del círculo */
  border-top: 3px solid #03375F; /* Color del borde animado */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Animación del giro del círculo */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Mensaje opcional de carga */
.loading-text {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
}
img{
  width: 250px
}
