/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* FONDO */
body {
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* CONTENEDOR */
.verificando-container {
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

/* LOGO */
.logo {
  width: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* TEXTO */
.verificando-container p {
  margin-top: 15px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* LOADER */
.loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/* ANIMACIONES */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}