#veil {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login-box {
  background: rgba(255, 248, 220, 0.95);
  border: 2px solid gold;
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 0 30px gold;
  text-align: center;
  font-family: 'Chaparral Pro', serif;
}

#login-box input, #login-box button {
  width: 90%;
  margin: 10px auto;
  padding: 10px;
  border-radius: 5px;
  border: none;
}

#login-box button {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 10px #d4af37;
  cursor: pointer;
}
  .error {
  color: crimson;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.online-icon {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 200, 0.9);
  border: 2px solid gold;
  padding: 8px 12px;
  font-size: 18px;
  font-family: 'Papyrus', serif;
  box-shadow: 0 0 10px gold;
  border-radius: 8px;
  z-index: 9999;
}
