:root {
  background-color: #131313;
  margin: 0;
  font-family: 'Comic Neue', cursive;
}

.login_things {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #222;
  width: 400px;
  border-radius: 14px;
  position: absolute;
  z-index: 1;
  height: 300px;
  top: calc(50% - 300px / 2);
  left: calc(50% - 400px / 2);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 255);
}

.content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10px 10px;
}

.content button {
  cursor: pointer;
  background-color: #06c200;
  padding: 10px 20px;
  border-color: #06c200;
  border-style: solid;
  border-radius: 8px;
  color: #181818;
  margin-bottom: 20px;
  margin-left: 20px;
  margin-right: 20px;
  font-family: 'Comic Neue', cursive;
  font-size: 22px;
  font-weight: bold;
}

.content button:hover {
  background-color: #08eb00;
  border-color: #08eb00;
  border-style: solid;
}

.content button:active {
  border-color: #222;
  border-style: solid;
}

.header {
  font-size: 32px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 19px;
}

.login_things input {
  border: 1px solid #dddddd;
  background-color: #333;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 4px;
  border-color: #333;
  outline: none;
  padding: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.login_things input:active {
  border-color:#222;
}

.footer {
  visibility: hidden;
  width: 0px;
  height: 0px;
}

.error {
  color: #ff0000;
  text-align: center;
}