body {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  background: linear-gradient(120deg, #6a0000, #1a0000);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ff000055;
}

input {
  display: block;
  width: 80%;
  margin: 10px auto;
  padding: 10px;
  border: none;
  border-radius: 8px;
}

button, .button {
  padding: 10px 20px;
  background-color: crimson;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
}

button:hover, .button:hover {
  background-color: darkred;
}