.demo-restricted {
  display: flex;
  width: 100%;
  min-height: calc(100dvh - 112px);
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 48px;
  background: #fff;
  color: #101828;
  text-align: center;
}

.demo-restricted__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 2px solid #dc2626;
  border-radius: 50%;
  place-items: center;
  color: #dc2626;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.demo-restricted h1 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.demo-restricted p {
  max-width: 360px;
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0;
}

.demo-restricted__actions {
  display: grid;
  width: 100%;
  max-width: 340px;
  gap: 12px;
  margin-top: 28px;
}

.demo-restricted__actions button {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  cursor: pointer;
}

.demo-restricted__primary {
  border: 1px solid #1d4ed8;
  background: #1d4ed8;
  color: #fff;
}

.demo-restricted__secondary {
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #344054;
}

@media (max-width: 600px) {
  .demo-restricted {
    min-height: calc(100dvh - 96px);
    justify-content: flex-start;
    padding-top: 64px;
  }
}
