body {
  background-color: rgb(253, 253, 232);
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.input-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.p-4 {
  padding: 4px;
}

.input {
  height: 32px;
  border: none;
  border-radius: 4px;
  box-shadow: 0px 1px 1px #98989d;
  padding: 0 10px;
}

.button {
  width: 100%;
  height: 48px;
  color: white;
  background-color: cornflowerblue;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
}

:hover.button {
  background-color:rgb(69, 128, 237);
}

.divider {
  width: 2px;
  margin: 0 10px 0 10px;
  background-color: #98989d;
  height: 400px;
}