/* Registrazione paziente - header minimale dedicato */
:root{
  --rp-border: #e2e8f0;
  --rp-muted: #475569;
  --rp-shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
}

body.reg-page #headSection.reg-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--rp-border);
}

body.reg-page #logoImg.reg-logo{
  width: 44px;
  height: 44px;
  max-width: none;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--rp-border);
  padding: 6px;
  background: #fff;
  box-shadow: var(--rp-shadow-sm);
}

body.reg-page .reg-header-title{
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--rp-muted);
  white-space: nowrap;
}

/* Compatta lo spazio sopra al form, dato che abbiamo rimosso l'hero */
body.reg-page #body{
  padding-top: 14px;
}

