body {
  font-family: 'PT Sans', sans-serif;
  background-color: antiquewhite;
}

.container {
  max-width: 410px;
  margin: 0 auto;
}

.be {
  font-size: 36px;
}

.four {
  font-size: 12px;
}

.tagline {
  float: right;
  font-style: italic;
  color: rgb(155, 153, 152)
}

form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 8px;
}

input {
  grid-column: span 4 / span 4;
  background-color: rgb(255, 235, 209);
  border: solid 1px rgb(255, 200, 128);
  border-radius: 4px;
}

input:focus,
input:active {
  background-color: rgb(255, 224, 183);
  border: solid 1px rgb(190, 147, 90);
}
 
form button {
  grid-column-start: 5;
  background-color: rgb(255, 235, 209);
  border: solid 1px rgb(255, 200, 128);
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: rgb(255, 224, 183);
  border: solid 1px rgb(190, 147, 90);
}

.footer {
  text-align: center;
  font-size: 11px;
  color: rgb(155, 153, 152);
}

a {
  color: rgb(54, 54, 54);
}

.footer a {
  color: rgb(126, 124, 123);
  text-decoration: none;
}

.error {
  background-color: rgb(245, 134, 134);
  color: white;
  margin-bottom: 4px;
  padding: 3px;
  font-size: 12px;
  border-radius: 4px;
  border: solid 1px rgb(206, 83, 83);
}