/* =====================================
   FORMS & INPUTS
===================================== */

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-inline {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.field-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.input {
  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  border: 4px solid #000;
  padding: 8px 10px;
  background: #ffff00;
}

.invest-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.transfer-form {
  grid-template-columns: 1fr 1fr 1.5fr auto;
}

@media (max-width: 820px) {
  .invest-form {
    grid-template-columns: 1fr;
  }

  .transfer-form {
    grid-template-columns: 1fr;
  }

  .adjust-form {
    grid-template-columns: 1fr;
  }

  .adjust-form .field.full {
    grid-column: span 1;
  }
}

.adjust-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.adjust-form .field.full {
  grid-column: span 2;
}

.adjust-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.adjust-quick {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-body-input {
  min-height: 160px;
  resize: vertical;
}

.redeem-toggle {
  display: inline-flex;
  margin-top: 6px;
  gap: 8px;
  font-size: 16px;
}

.redeem-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.redeem-toggle input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #ffff00;
  border: 4px solid #000;
  box-shadow: 3px 3px 0 #000;
  display: inline-grid;
  place-content: center;
}

.redeem-toggle input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0000ff;
  transform: scale(0);
  transition: transform 0.08s ease;
}

.redeem-toggle input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.modal-input {
  padding: 10px;
  font-size: 16px;
  border: 4px solid #000;
}


