body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: radial-gradient(ellipse at center, #0a0f2b 0%, #00061a 100%);
  overflow: hidden;
  font-family: "JetBrains Mono", monospace;
  color: white;
}

.galaxy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vw;
  height: 200vh;
  transform: translate(-50%, -50%) rotate(0deg);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: spin 120s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 60%);
  opacity: 0.8;
  animation: float var(--float-speed, 40s) ease-in-out infinite alternate;
  transform: scale(var(--scale, 1));
}

.particle.blue {
  background: radial-gradient(circle, rgba(100, 149, 237, 0.4) 0%, transparent 60%);
}

.particle.white {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
}

.particle.pulse {
  animation: pulse 4s infinite ease-in-out alternate, float var(--float-speed, 40s) ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(var(--scale, 1));
  }

  50% {
    transform: translate(var(--move-x, 20px), var(--move-y, -20px)) scale(var(--scale, 1.2));
  }

  100% {
    transform: translate(0, 0) scale(var(--scale, 1));
  }
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.6;
  }

  to {
    transform: scale(1.4);
    opacity: 1;
  }
}




.container-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  padding: 40px 20px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.text-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: flex-start;
}

.text-info {
  max-width: 540px;
  text-align: left;
  color: white;
  white-space: normal;
  font-weight: 500;
}

.text-info h2 {
  font-weight: 700;
  color: white;
}

.text-info ul {
  padding-left: 0;
  list-style: none;
}

.text-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  white-space: normal;
}

.image-overlay img {
  width: 620px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.login-card {
  background: linear-gradient(to bottom right, #ffffff, #f4f7fa);
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  padding: 40px 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  margin-left: auto;
  color: black;
  font-family: "JetBrains Mono", monospace;
}

.login-card label,
.login-card input,
.login-card .form-check-label,
.login-card button {
  font-family: "JetBrains Mono", monospace;
  color: black;
}

.login-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-info {
    text-align: center;
  }

  .login-card {
    margin-left: 0;
    margin-top: 40px;
  }
}