body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0d0b1f;
  background-image: radial-gradient(circle at center, #32135a, #0d0b1f);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

.login-container {
  background: rgba(24, 12, 40, 0.85);
  border: 2px solid #7e3ff2;
  border-radius: 15px;
  padding: 40px 30px;
  width: 350px;
  box-shadow: 0 0 20px #7e3ff2;
  text-align: center;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 30px;
  color: #c7a1ff;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background-color: #1c1230;
  border: 1px solid #7e3ff2;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
}

.login-form input:focus {
  outline: none;
  border-color: #a765ff;
  box-shadow: 0 0 10px #7e3ff2;
}

button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #7e3ff2, #a765ff);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

button:hover {
  background: linear-gradient(90deg, #a765ff, #7e3ff2);
}

.signup-link {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #c7a1ff;
}

.signup-link a {
  color: #ffffff;
  text-decoration: underline;
}

.modal {
  /* Only display when JavaScript sets it */
  display: none; /* this must stay */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}


.modal-content {
  background: #1a102e;
  padding: 30px;
  border: 2px solid #7e3ff2;
  border-radius: 12px;
  box-shadow: 0 0 20px #7e3ff2;
  text-align: center;
  color: white;
  font-family: 'Orbitron', sans-serif;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
