body {
  margin: 0;
  padding: 0;
  background-color: #121212;
  font-family: 'Segoe UI', sans-serif;
  color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: #1e1e1e;
  padding: 2rem 2.5rem;
  border: 1px solid #333;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  box-shadow:
    0 0 60px 20px rgba(0, 255, 255, 0.25),
    0 0 10px rgba(0, 255, 255, 0.2);
  animation: fadeIn 0.3s ease-in-out;
   border-radius: 15%; /* Makes the logo perfectly round */
}

.login-container h2 {
  text-align: center;
  color: #00faff;
  margin-bottom: 1.5rem;
}

label {
  font-size: 0.95rem;
  color: #ccc;
  display: block;
  margin-bottom: 0.25rem;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #2c2c2c;
  color: #f0f0f0;
}

input::placeholder {
  color: #888;
}

button[type="submit"] {
  width: 100%;
  background-color: #00faff;
  color: #000;
  font-weight: bold;
  padding: 0.7rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}

button[type="submit"]:hover {
  background-color: #00d4d4;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== LOGO WITH GLOW ===== */
.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.login-logo img {
  max-width: 120px;
  height: auto;
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease-in-out;
  border-radius: 50%; /* Makes the logo perfectly round */
}


.login-logo img:hover {
  transform: scale(1.07);
}

/* Glow effect behind logo */
.login-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.4);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  animation: pulseGlow 2.5s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

/* Register link styles */
.register-link {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  opacity: 0.85;
  animation: fadeIn 0.6s ease-in-out;
}

.register-link a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.register-link a:hover {
  color: #00faff;
  text-decoration: underline;
  opacity: 1;
}
