/* Shared page background for every layout. */
body {
  min-height: 100vh;
  background-color: #fff;
  background-image: linear-gradient(
    180deg,
    rgba(237, 76, 76, 0.1) 0,
    rgba(255, 255, 255, 0) 520px
  );
  background-repeat: no-repeat;
}

body.bg-dark {
  background-color: #212529 !important;
  background-image: linear-gradient(
    180deg,
    rgba(237, 76, 76, 0.18) 0,
    rgba(33, 37, 41, 0) 520px
  ) !important;
}
