body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: hsl(224, 15%, 18%);
  color: white;
  -webkit-touch-callout: none;
}

form {
  background-color: hsl(224, 15%, 12%);
  padding: 25px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}

form p {
  display: flex;
}

form p label {
  margin: 5px;
}

input[type="text"],
input[type="password"] {
  flex-grow: 1;
  justify-self: flex-end;
}

form button {
  align-self: center;
  background-color: hsl(224, 15%, 7%);
  border: none;
  border-radius: 3px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

form button:active {
  background-color: white;
  color: black;
}
