/* OfficeHub Sign — powered by DocuSeal */
/* OPG Brand: #3FA5FF (primary), #007ACC (deep), #004A80 (darker) */

:root {
  --opg-primary: #3FA5FF;
  --opg-deep: #007ACC;
  --opg-darker: #004A80;
}

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

/* OPG gradient on primary buttons */
.btn-primary, .btn-neutral {
  background-image: linear-gradient(135deg, #3FA5FF 0%, #007ACC 100%) !important;
  border: none !important;
  color: white !important;
}

.btn-primary:hover, .btn-neutral:hover {
  background-image: linear-gradient(135deg, #007ACC 0%, #004A80 100%) !important;
}

/* Rounded cards */
.rounded-box, .card {
  border-radius: 1rem !important;
}

/* OPG accent on inputs */
.input-bordered:focus, .select-bordered:focus, .textarea-bordered:focus {
  border-color: var(--opg-primary) !important;
  box-shadow: 0 0 0 2px rgba(63, 165, 255, 0.2) !important;
}

/* Brand the navbar title */
a.text-2xl {
  color: var(--opg-deep) !important;
}

/* "Powered by DocuSeal" footer */
body > div.max-w-6xl::after {
  content: "OfficeHub Sign — powered by DocuSeal";
  display: block;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
}
