body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea,
.field select {
  border: 1px solid #cbd5e1;
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
  color: #0f172a;
  background: #fff;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid #0d1b3e;
  outline-offset: 1px;
}

.btn-primary {
  background: #0d1b3e;
  color: #fff;
  border: none;
  border-radius: 0.65rem;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.field-error {
  border-color: #dc2626 !important;
}
