* {
  box-sizing: border-box;
}

body {
  /* height: 400px; */
  min-height: 100vh;
  /* width: 60vw; */
  /* margin: 200px; */
  display: grid;
  place-items: center;
}

div.container {
}

div.container form {
  width: 500px;
  padding: 20px;
  margin: 0;
  border: 1px solid black;
}

form .inputs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.inputs > * {
  border: 1px solid black;
  padding: 20px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 1;
}

input[type="submit"] {
  background: black;
  color: white;
  font-size: 20px;
  padding: 20px;
  border: 0;
  width: 100%;
  text-align: center;
}

input[type="submit"]:disabled,input[disabled] {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

input[type="submit"]:focus {
  border-color: blue;
}
