body {
  margin: 0;
  height: 100vh;

  background-color: #202124;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 320px;
  height: 200px;
  padding: 16px;
  box-sizing: border-box;

  background-color: #303134;
  border-radius: 0.5rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inputContainer {
  display: flex;
  align-items: center;
}

.disable {
  display: none;
}

h1 {
  margin: 0;

  text-align: center;
}

button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #4a4d50;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

input {
  width: 64px;
  margin-left: auto;
  margin-right: 4px;
}

.statusContainer {
  display: flex;

  justify-content: space-between;

  margin-top: auto;
  margin-bottom: auto;
}

.status {
  display: flex;
  flex-direction: column;

  width: 130px;
}

.description {
  font-size: 1rem;
  text-align: center;
}

.number {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}

.splitter {
  border-left: #202124 2px solid;
  height: 100%;
}

#login {
  justify-content: space-around;
}

#login > input {
  width: 100%;
}
