@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&family=Dela+Gothic+One&family=Josefin+Sans:wght@500&family=Jost:wght@500&family=Orbitron:wght@600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: url("../img/login.jpg") no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  width: 300px;
  color: white;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.textbox {
  margin-bottom: 15px;
}

.textbox input {
  width: 100%;
  padding: 10px;
  background-color: #333;
  border: 1px solid #555;
  border-radius: 5px;
  color: white;
  font-size: 16px;
}

.textbox input:focus {
  border-color: #106efc;
  outline: none;
}

.btn {
  background-color: #106efc;
  color: white;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #28a745;
}

.register {
  margin-top: 10px;
}

.register a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.register a:hover {
  color: #fff;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
