input[type="text"], input[type="password"], input[type="number"], select {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-base);
  font-size: var(--text-base);
  background: white;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--action-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-medium);
  color: var(--gray-700);
}
