body {
  font-family: 'Inter', 'Open Sans', sans-serif;
}

/* Fondo */
.elegant-bg {
  background: radial-gradient(circle at top, #0a2a43, #061a2d);
  color: #ffffff;
}

/* Contenedor */
.login-wrapper {
  max-width: 420px;
  padding: 2rem;
  animation: fadeIn 1s ease;
}

/* Títulos */
.login-title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 0.5rem;
}

.login-subtitle {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* Botón */
.btn-elegant {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 0.65rem 1.2rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  
}

.btn-elegant:hover {
  background: rgba(255, 255, 255, 0.808);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Texto inferior */
.login-footnote {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Animación */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
