.book-form {
  background: rgba(var(--color-primary-100), 0.75);
  border-radius: 1rem;
}

.book-form > .wrapper {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: end;
}

@media (max-width: 959px) {
  .book-form > .wrapper .col:last-of-type {
    grid-column: span 2;
  }
}

@media (min-width: 960px) {
  .book-form > .wrapper {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.book-form label {
  display: block;
  margin-bottom: 0.25rem;
  color: rgb(var(--color-secondary-700));
  font-size: var(--font-sm);
}

.book-form input[type='date'],
.book-form select {
  width: 100%;
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid rgb(var(--color-secondary-700));
  line-height: 100%;
  background-color: transparent;
  outline: none;
}

.book-form button {
  border: none;
  width: 100%;
}
