
body.bg {
  background: linear-gradient(135deg, #3a0ca3, #7209b7);
  height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  backdrop-filter: blur(3px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 100%;
  max-width: 350px;
}

.btn-login {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #5ce1e6;
  color: #0d2c3f;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background: #4bd3d7;
  color: #000;
}

.glass-card .evento-info {
  font-size: 14px;
  margin-top: 1rem;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 8px;
  border-radius: 10px;
}

.link-registrar {
  color: #5ce1e6;
  text-decoration: underline;
  font-weight: 500;
}

.link-registrar:hover {
  color: #4cc3c5;
  text-decoration-thickness: 2px;
}


