html, body{
    height: 100%;
    /* overflow: hidden; */
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
                 Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
                 sans-serif;
}

.Title {
    font-weight: bold;
    font-size: 56px;
    letter-spacing: 0;
    line-height: 30px;
}

.Label {
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 24px;
}

.Subtitle {
    font-size: 26px;
    letter-spacing: 0;
    line-height: 24px;
}

.TheCommand {
    text-align: center;
    display: grid;
    /* top: 14%; */
    /* left: 50%; */
    /* transform: translate(-50%, 50%); */
    /* position: absolute; */
}

.Page {
    top: 2%;
    left: 40%;
    transform: translate(-20%, 10%);
    position: absolute;
    letter-spacing: 0;
    font-size: 16px;
    line-height: 24px;
}

.align-center {
    text-align: center;
    margin: auto;
    display: inline-block;
}

.align-left {
    text-align: left;
    margin: auto;
    display: inline-block;
}

.align-right {
    text-align: right;
    margin: auto;
    display: inline-block;
}

.table {
    display: table;
    margin: auto;
}

.row  {
    display: table-row;
}

.cell {
    display: table-cell;
    /* border: solid; */
    border-width: thin;
    padding-left: 5px;
    padding-right: 5px;
}

.code-like {
    font-family: monospace;
}

.color-blue {
    color: rgb(114, 137, 218);
}

.color-red {
    color: rgb(240, 71, 71);
}

.button {
  background: rgb(114, 137, 218);
  border: medium none;
  color: rgb(255, 255, 255);
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  height: 42px;
  min-width: 100px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  font-family: Inter-Regular;
  transition: all 500ms ease 0s;
  padding: 10px;
}

.Box {
  border: 1px solid rgb(58, 64, 72);
  border-radius: 4px;
  padding: 4px;
}

.Container {
  height: auto;
  width: auto;
  /* display: flex; */
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: white;
  border: 1px solid rgb(58, 64, 72);
  border-radius: 4px;
  padding: 16px;
}

.error-text {
  font-family: Inter-Regular;
  font-size: 14px;
  color: white;
  background-color: rgb(240, 71, 71);
  text-align: center;
  padding-left: 4px;
  padding-right: 4px;
}

.input {
  background: rgb(255, 255, 255);
  /* border: 1px solid rgb(74, 77, 82); */
  border: 1px solid;
  border-radius: 4px;
  padding: 8px;
  font-size: 16px;
  font-family: monospace;
  /* color: rgb(255, 255, 255); */
  line-height: 26px;
  outline: none;
  width: auto;
  transition: all 500ms ease 0s;
  appearance: textfield;
}
