.engine-empty {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #0d0d0d;
  color: #fff;
  font: 16px/1.5 system-ui, sans-serif;
}

.admin-entry {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 120;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #0d0d0d;
  background: var(--primary);
  text-decoration: none;
  font: 700 12px/1 var(--font-body);
  opacity: 0.16;
  transition: opacity 0.2s ease;
}

.admin-entry:hover {
  opacity: 1;
}

.field-hint,
.field-error {
  display: block;
  margin-top: 6px;
  color: #E7F0AF;
  font-size: 12px;
}

.field.error input {
  border-color: #E7F0AF;
}

@media (max-width: 768px) {
  .admin-entry {
    display: none;
  }
}
