/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(to right, #2c3e50, #cca1ec);
  color: white;
  text-align: center;
  margin: 0;
}

/* Contenedor principal */
.container {
  max-width: 600px;
}

/* Estilos para el logo */
.logo {
  width: 350px; /* Ajusta el tamaño según sea necesario */
  margin-bottom: 20px;
}

/* Carga animada */
.loader {
  margin: 20px auto;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}