body {
  font-family: 'Poppins', sans-serif;
  background-color: #1b1b1b;
  color: white;
  padding: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}


/* Pseudo-element to apply semi-transparent background image */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url("login_bg.svg");
  background-repeat: repeat;
  background-size: 500px 500px;
  opacity: 0.3; /* adjust to control visibility */
  z-index: -1;
  pointer-events: none;
}

a {
  color: #6cff64; /* Your brand green */
  text-decoration: none;
}

/* Hover effect */
a:hover {
  color: #4df34a;
  text-decoration: underline;
}

/* Visited links (optional) */
a:visited {
  color: #58e954;
}


.auth-container {
  max-width: 400px;
  margin: 270px auto;
  padding: 30px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 20px #6cff64;
}

.auth-container h2 {
  text-align: center;
  color: #6cff64;
}

.us_name, .us_pass {
  width: 95%;
  color: white;
  background-color: #2a2a2a;
  border: 1px solid #444;
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 8px;
}

.us_login {
  background-color: #6cff64;
  color: black;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
}

/* Overlay window code */
.overlay-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.message-content {
  color: #6cff64;
  background: #222;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 5px #6cff64;
  width: auto;
  text-align: center;
  position: relative;
  white-space: wrap;
  font-family: sans-serif;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 5px;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}
