
:root {
  --border-color: #9faaa3;
  --border-top-color: #ffffff;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.88); /* Fondo blanco al 88% de transparencia */
  z-index: 5000;
}

.loader {
  width: 80px;
  height: 80px;
  border: 53px solid #9faaa3;
  border-top: 53px solid var(--border-top-color);
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.logo {
  position: absolute;
  width: 100px;
  height: 100px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
