.bodyBackground {
  background: url('./bg.png') center center / cover no-repeat;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
}

.bodyBackground::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(8px) brightness(0.8);
  z-index: 0;
}

.bodyBackground::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

.centerbg {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  min-width: 320px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.KeyInput {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  width: 100%;
  max-width: 300px;
  color: #ffffff;
  text-align: left;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.KeyLogin {
  background: linear-gradient(to bottom, rgb(98, 0, 255), rgb(47, 0, 255));
  color: white;
  border-radius: 6px;
  border: none;
  width: 100%;
  max-width: 200px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}

.KeyLogin:hover {
  background: linear-gradient(to bottom, rgb(98, 0, 255), rgb(0, 47, 255));
}

.text {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.loginMessage {
  color: #ffcc00;
  margin-top: 0.5rem;
  font-size: 1rem;
  min-height: 1.2rem;
  text-align: center;
}