body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background: #000000;
  position: relative;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-image:
    linear-gradient(transparent 95%, rgba(36,44,54,0.7)),
    repeating-linear-gradient(
      to right,
      rgba(60, 70, 90, 0.07) 0px,
      rgba(90, 100, 120, 0.09) 1px,
      transparent 2px,
      transparent 70px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(60, 70, 90, 0.06) 0px,
      rgba(90, 100, 120, 0.09) 1px,
      transparent 2px,
      transparent 70px
    );
  z-index: 0;
  animation: gridMove 12s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 90px 70px, 90px 0, 0 70px; }
}

header {
  background: rgba(0, 0, 0, 0.95);
  text-align: center;
  border-bottom: 2px solid #22223B;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 2;
  padding: 3rem 0 2rem 0;
}

.titulo-asamblea {
  color: #fff;
  font-size: 3em;
  font-weight: 900;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 16px rgba(33,71,152,0.19), 0 4px 32px rgba(0,0,0,0.24);
  font-family: 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  background: linear-gradient(90deg, #22c1c3, #24b9ff 60%, #3762e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 700px;
  z-index: 2;
  position: relative;
  width: 100%;
}

.contenedor-botones {
  display: flex;
  gap: 4rem;
  margin-top: 80px;
  margin-bottom: 40px;
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% { left: -100px; }
  60% { left: 100%; }
  to { left: 100%; }
}

.button-servicio {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: transparent !important;
  border: 2px solid #666 !important;
  color: #999 !important;
  font-size: 14px !important;
  padding: 10px 20px !important;
  z-index: 100;
}

.button-servicio:hover {
  background-color: #1a1a1a !important;
  border-color: #aaa !important;
  color: #fff !important;
}

.button-servicio::before {
  display: none !important;
}

.contenedor-auth {
  margin-top: 140px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.user-profile {
  width: 131px;
  height: 51px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  background: linear-gradient(
    to bottom right,
    #2e8eff 0%,
    rgba(46, 142, 255, 0) 30%
  );
  background-color: rgba(46, 142, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-profile:hover,
.user-profile:focus {
  background-color: rgba(46, 142, 255, 0.7);
  box-shadow: 0 0 10px rgba(46, 142, 255, 0.5);
  outline: none;
}

.user-profile-inner {
  width: 127px;
  height: 47px;
  border-radius: 13px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-weight: 600;
}

.user-profile-inner svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}