/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body */
body {
  height: 100vh;
  background: #02042b;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.container {
  position: relative;
  width: 350px;
  height: 350px;
}

/* Circle wrapper */
.circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* Each rotating bar */
.circle span {
  position: absolute;
  width: 6px;
  height: 22px;
  background: #00ff88;
  opacity: 0.2;   /* 👈 always visible (dim) */
  left: 50%;
  top: 0;
  transform-origin: center 175px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* Active (comet head + tail) */
.circle span.active {
  opacity: 1;   /* 👈 full brightness */
  box-shadow: 
    0 0 8px #00ff88,
    0 0 16px #00ff88,
    0 0 24px #00ff88;
}

/* Login Box */
.login-box {
  position: absolute;
  inset: 45px;
  background: #02042b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: #00ff88;
  padding: 20px;
}

/* Heading */
.login-box h2 {
  margin-bottom: 5px;
  font-size: 22px;
}

/* Inputs */
.login-box input {
  width: 80%;
  padding: 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  text-align: center;
  background: #0a0d3d;
  color: white;
}

/* Button */
.login-box button {
  width: 80%;
  padding: 10px;
  border: none;
  border-radius: 20px;
  background: #00ff88;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* Button hover */
.login-box button:hover {
  background: #00c8e0;
  box-shadow: 0 0 10px #00ff88;
}

/* Text links */
.forgot,
.signup {
  font-size: 12px;
  color: #aaa;
  cursor: pointer;
}

.forgot:hover,
.signup:hover {
  color: #00ff88;
}