/* =========================================================
   components/access-denied.css
   ---------------------------------------------------------
   Access denied message styles.
   ========================================================= */

/* =========================================================
  35) ACCESS DENIED MESSAGE
   ========================================================= */

.nn-access-denied {
  max-width: 560px;
  margin: 48px auto;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.nn-access-denied__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 159, 168, 0.12);
  color: #0F9FA8;
  font-size: 21px;
}

.nn-access-denied h1 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.15;
}

.nn-access-denied p {
  margin: 0 0 20px;
  color: #64748b;
  line-height: 1.45;
}

