body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: #000;
  background-image: url('../images/background_pc.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.form-box {
  background: rgba(0, 0, 0, 0.8);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px #9b5eff;
  width: 300px;
}

.form-box h2 {
  margin-bottom: 20px;
  text-align: center;
}

.inputbox {
  position: relative;
  margin-bottom: 20px;
}

.inputbox input {
  width: 100%;
  padding: 10px;
  background: #111;
  border: none;
  border-radius: 5px;
  color: #fff;
}

.inputbox label {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 14px;
  color: #9b5eff;
}

button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(270deg, #9b5eff, #2e92fa);
  color: white;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.register, .forget {
  text-align: center;
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 20px;
}

a {
  color: #9b5eff;
  text-decoration: none;
}
