.unauthorized {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
.unauthorized a {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
  border-radius: 4px;
  box-shadow: 1px 1px 5px #808080;
  background-color: #5236AB;
  color: #fff;
  width: fit-content;
}
.unauthorized .btn {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.message p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .unauthorized {
    flex-direction: column;
  }
  .message {
    justify-content: center;
  }
  .message h1, .message p, .message a {
    text-align: center;
    margin: auto;
  }
}

/*# sourceMappingURL=unauthorized.css.map */