/* Patient profile completion modal (OTP onboarding) — shared across public pages */

.patient-profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.patient-profile-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 24px;
}

.patient-profile-header h3 {
  font-size: 18px;
  color: #28328c;
  margin-bottom: 6px;
}

.patient-profile-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.patient-profile-status {
  font-size: 13px;
  margin-bottom: 12px;
  border-radius: 8px;
}

.patient-profile-card .form-row {
  margin-bottom: 14px;
}

.patient-profile-card label {
  display: block;
  font-size: 13px;
  color: #334155;
  margin-bottom: 6px;
}

.patient-profile-card input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  box-sizing: border-box;
}

.patient-profile-card .optional-hint {
  font-weight: 400;
  font-size: 12px;
  color: #94a3b8;
}

.patient-profile-email-row label {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.patient-profile-card .actions {
  margin-top: 14px;
}

.patient-profile-card .actions button {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #28328c;
  color: #fff;
}

.patient-profile-card .actions button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
