.drawer-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 26px 28px 34px;
}

.drawer-form label {
  margin-top: 10px;
  color: #41443f;
  font-size: 12px;
  font-weight: 680;
}

.drawer-form em {
  color: var(--danger);
  font-style: normal;
}

.drawer-form input,
.drawer-form textarea,
.drawer-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: none;
  background: var(--surface-raised);
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.drawer-form textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.55;
}

.drawer-form input:focus,
.drawer-form textarea:focus,
.drawer-form select:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(111, 125, 141, 0.13);
}

.drawer-form input:disabled,
.drawer-form textarea:disabled,
.drawer-form select:disabled {
  cursor: not-allowed;
  border-color: #dfdcd6;
  background: #eeece7;
  color: #85877f;
}

.drawer-form input[type="file"] {
  padding: 9px;
  background: #f5f3ee;
  cursor: pointer;
}

.drawer-form small,
.file-hint {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.55;
}

.form-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: var(--danger);
  font-size: 11px;
  line-height: 1.45;
}

.drawer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
