body {
  background-image: url(../images/make-glizzy.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-container {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px;
  border-style: solid;
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

table {
  padding: 0 40px;
  width: 100%;
  border-spacing: 0 20px;
}

th {
  text-align: left;
  padding: 6px 20px 0 0;
  font-weight: normal;
  vertical-align: top;
  font-size: var(--font-reg);
}

td {
  max-width: 60%;
}

td > * {
  width: 100%;
  padding: 2px 4px;
  font-size: var(--font-l);
}

td > textarea {
  height: calc(4 * var(--font-l) + 8px);
  font-family: inherit;
}

.btn-submit {
  background-color: rgb(53, 196, 53);
  padding: 8px 16px;
  border-radius: 6px;
  border-width: 2px;
  border-style: solid;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  align-self: flex-end;
  margin-right: 40px;
}

.btn-submit:hover {
  background-color: rgb(3, 171, 3);
}