html,
body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  background: #1D1E22;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 50px;
}

#container {
  width: 40vw;
  height: 40vh;
}

input {
  width: 30vw;
  background: transparent;
  border: 1px solid currentColor;
  box-shadow: none;
  padding: 15px 20px;
  color: #7C808F;
  border-radius: 5px;
}

button {
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  color: #7C808F;
  cursor: pointer;
  border-radius: 5px;
}
button:hover {
  background: rgba(0, 0, 0, 0.4);
}
button:active {
  background: rgba(0, 0, 0, 0.1);
}