@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
  }
  

.login-container {
  position: relative;
  z-index: 10;
  background: rgba(26, 26, 29, 0.9);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px #ffbf00aa, 0 0 60px #ffbf00aa;
  width: 350px;
  text-align: center;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}

.title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffbf00;
  text-shadow: 0 0 10px #ffbf00;
}

.login-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  background: #2c2c2e;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.login-form input:focus {
  outline: none;
  box-shadow: 0 0 10px #ffbf00;
}

.login-form button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #ffbf00;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.login-form button:hover {
  background-color: #ffc933;
  box-shadow: 0 0 15px #ffc933;
}

.error-msg {
  margin-top: 1rem;
  color: #ff4d4f;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}
