.field {
  clip-path: var(--bevel);
  width: 25rem;
  max-width: 100%;
  overflow: hidden;
  color: var(--ivory);
  display: flex;
}
.field label {
  background: var(--geode);
  padding: 0.5rem;
  width: 15rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
}
.field input {
  background: var(--gem);
  padding: 0.5rem 2rem;
  border: none;
  outline: none;
  color: var(--ivory);
  font-size: 1rem;
  appearance: textfield;
  -moz-appearance: textfield;
  width: 10rem;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  font-family: Dosis, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
fieldset {
  border: none;
  padding: 0;
}
fieldset .checkbox {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  align-content: center;
}
fieldset input[type=checkbox] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 6px;
  padding: 0;
  border: 1px solid var(--noir);
  appearance: none;
  background-color: transparent;
  outline: none;
  transition: outline 0.1s;
}
fieldset input[type=checkbox]:checked {
  background-size: cover;
  padding: 2px;
  background-color: var(--gem);
  position: relative;
}
fieldset input[type=checkbox]:checked::after {
  content: '×';
  font-size: 2rem;
  line-height: 0;
  color: var(--ivory);
  position: relative;
  top: 6px;
  left: -2px;
}
.btn {
  background-color: var(--gem);
  clip-path: var(--notches);
  width: fit-content;
  padding: 1rem;
  color: var(--ivory);
  cursor: pointer;
}
.btn:hover {
  background-color: var(--gem);
  color: var(--gold);
}
.easel {
  background: var(--ivory);
  clip-path: var(--bevel);
  height: fit-content;
}
.easel svg {
  width: 100%;
  aspect-ratio: auto;
  max-height: calc(100vh - 9rem);
}
@media screen and (max-width: 768px) {
  .field label {
    width: 80%;
  }
  .field input {
    width: 20%;
  }
}
