/* ---------- COMPONENTS: FORMS ---------- */
.form-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.form-label {
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
}

.input-control {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 14px;
  background: #f8fafc;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.input-control--readonly,
.input-control:disabled {
  background: #f1f5f9;
  color: #475569;
}

.settings-form .input-control {
  padding: 0.4rem 0.65rem;
}

.input-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.section-heading {
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

