html, body {
  padding 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
body {
  background-image: linear-gradient(-45deg, rgba(174, 39, 36, 0.5), transparent);
}
#Content, #Content > form {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.LoginBox {
  background-color: var(--bg);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
.InputContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.InputContainer > input {
  font-size: 1em;
}
.LoginButtonContainer {
  display: flex;
  justify-content: center;
}
.LoginButtonContainer > button {
  font-size: 1em;
  border-radius: 50px;
  background-color: rgba(200, 39, 36, 0.8);
  color: white;
}
span {
  font-size: 1em;
  font-weight: bold;
}
.Error {
  background-color: rgba(255, 0, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
  box-shadow: inset 0 0 5px 0 rgba(255,60,60,0.4)
}
input {
  outline: none;
  outline-width: 2px;
  outline-color: rgba(200,39,36,0.8);
}
input:focus {
  outline-style: solid;
}
button {
  outline: none;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: rgba(200,39,36,0.8);
}
button:focus {
  outline-style: solid;
}
