.slot {
  display: flex;
  border: 1px solid var(--color-input-outline);
  border-radius: calc(var(--curvynes) / 5);
  background: var(--color-base-bg);
}

.slot--focused {
  border-color: var(--color-accent-bg);
}

.slot__input::placeholder {
  font-weight: 100;
  color: inherit;
  opacity: 0.75;
  font-size: 1rem;
}

.slot__input {
  color: var(--color-base-fg);
  flex-grow: 1;
  border: none;
  padding: calc(var(--1) * 0.5);
  font-size: 1rem;
  box-sizing: border-box;
  outline: none;
  -moz-appearance: textfield;
  background: transparent;
  height: var(--2);
  @media (max-width: 1000px) {
    height: var(--3);
  }
}

.slot__affix {
  margin: auto 0.5em;
}

/* danger zone */
.slot + .form-submit {
  margin-top: .4rem;
}