@font-face {
  font-family: "Inter Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter/regular.ttf") format("truetype");
}
@font-face {
  font-family: "Inter Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter/bold.ttf") format("truetype");
}
@font-face {
  font-family: "JetBrains Mono Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/jetbrains-mono/regular.ttf") format("truetype");
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
html {
  font-family: "Inter Regular", sans-serif;
}
html ::selection {
  background: #5922AF;
  color: #FFFFFF;
}
html h1 {
  font-family: "Inter Bold", sans-serif;
  font-size: 1.5rem;
}
html h2 {
  font-family: "Inter Bold", sans-serif;
  font-size: 1.25rem;
}
html h3 {
  font-family: "Inter Bold", sans-serif;
  font-size: 1.1rem;
}
html p {
  font-size: 1rem;
  line-height: 1.5rem;
}
html small {
  font-size: 0.8rem;
}
html strong {
  font-family: "Inter Bold", sans-serif;
}
html a {
  font-family: "Inter Regular", sans-serif;
  color: #19ABFF;
}
html a:hover {
  text-decoration: none;
}
html figure {
  margin: 0;
}
html figure img {
  pointer-events: none;
}

/* Add styles for login and forgot password pages */
html#login, html#forgot-password, html#reset-password {
  height: 100vh;
  background-color: #5922AF;
  background-image: url("/assets/images/background.svg");
  background-size: cover;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
html#login body, html#forgot-password body, html#reset-password body {
  opacity: 0;
  animation: fadeIn 1s forwards;
}
html#login body main, html#forgot-password body main, html#reset-password body main {
  max-width: 350px;
  background: #FFFFFF;
  border: 3px solid #EBF0F6;
  border-radius: 1rem;
  margin: 0 auto;
  padding: 2rem 3rem;
}
html#login body main figure, html#forgot-password body main figure, html#reset-password body main figure {
  padding: 1rem 0;
}
html#login body main figure svg g path.cls-1, html#forgot-password body main figure svg g path.cls-1, html#reset-password body main figure svg g path.cls-1 {
  fill: #000000;
}
html#login body main figure svg path.cls-2, html#forgot-password body main figure svg path.cls-2, html#reset-password body main figure svg path.cls-2 {
  fill: #5922AF;
}
html#login body main form, html#forgot-password body main form, html#reset-password body main form {
  padding: 1rem 0;
}
html#login body main form label, html#forgot-password body main form label, html#reset-password body main form label {
  display: block;
  margin-bottom: 0.5rem;
}
html#login body main form label span, html#forgot-password body main form label span, html#reset-password body main form label span {
  color: #19ABFF;
}
html#login body main form input, html#forgot-password body main form input, html#reset-password body main form input {
  width: 100%;
  padding: 1rem;
  margin: 0 0 1rem 0;
  border-width: 2px;
  border-style: solid;
  border-color: #EBF0F6;
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}
html#login body main form input:read-only, html#forgot-password body main form input:read-only, html#reset-password body main form input:read-only {
  cursor: not-allowed;
}
html#login body main form p.information, html#forgot-password body main form p.information, html#reset-password body main form p.information {
  line-height: normal;
  margin-top: 0;
}
html#login body main form div.success, html#forgot-password body main form div.success, html#reset-password body main form div.success {
  color: #000000;
  background: #EBF0F6;
}
html#login body main form div.success figure svg, html#forgot-password body main form div.success figure svg, html#reset-password body main form div.success figure svg {
  fill: #000000;
  width: 20px;
  height: 20px;
}
html#login body main form div.error, html#forgot-password body main form div.error, html#reset-password body main form div.error {
  color: #FFFFFF;
  background: #FF1938;
}
html#login body main form div.error figure svg, html#forgot-password body main form div.error figure svg, html#reset-password body main form div.error figure svg {
  fill: #FFFFFF;
  width: 20px;
  height: 20px;
}
html#login body main form div.success, html#login body main form div.error, html#forgot-password body main form div.success, html#forgot-password body main form div.error, html#reset-password body main form div.success, html#reset-password body main form div.error {
  padding: 1rem;
  margin: 1rem 0 0 0;
  border-radius: 0.5rem;
  display: none;
  align-items: flex-start;
}
html#login body main form div.success figure, html#login body main form div.error figure, html#forgot-password body main form div.success figure, html#forgot-password body main form div.error figure, html#reset-password body main form div.success figure, html#reset-password body main form div.error figure {
  display: inline-block;
  padding: 0.1rem 0 0 0;
}
html#login body main form div.success p, html#login body main form div.error p, html#forgot-password body main form div.success p, html#forgot-password body main form div.error p, html#reset-password body main form div.success p, html#reset-password body main form div.error p {
  padding: 0 0 0 0.5rem;
  margin: 0;
}
html#login body main form button[type=submit], html#forgot-password body main form button[type=submit], html#reset-password body main form button[type=submit] {
  width: 100%;
  font-size: 1rem;
  color: #FFFFFF;
  background: #5922AF;
  padding: 1rem;
  margin: 1rem 0 0 0;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
html#login body main form button[type=submit]:hover, html#forgot-password body main form button[type=submit]:hover, html#reset-password body main form button[type=submit]:hover {
  background: rgb(67.2822966507, 25.7033492823, 132.2966507177);
}
html#login body main form a, html#forgot-password body main form a, html#reset-password body main form a {
  text-decoration: none;
  color: #000000;
  padding: 1rem 0 0 0;
  display: block;
}
html#login body main form a:hover, html#forgot-password body main form a:hover, html#reset-password body main form a:hover {
  text-decoration: underline;
}
html#login body main form a.return, html#forgot-password body main form a.return, html#reset-password body main form a.return {
  background: #EBF0F6;
  padding: 1rem;
  margin: 1rem 0 0 0;
  text-align: center;
  border-radius: 0.5rem;
}
html#login body main form a.return:hover, html#forgot-password body main form a.return:hover, html#reset-password body main form a.return:hover {
  background: rgb(199.8275862069, 213.6206896552, 230.1724137931);
  text-decoration: none;
}
html#login body footer, html#forgot-password body footer, html#reset-password body footer {
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html#login body footer p small a, html#forgot-password body footer p small a, html#reset-password body footer p small a {
  color: #FFFFFF;
  text-decoration: none;
}
html#login body footer p small a:hover, html#forgot-password body footer p small a:hover, html#reset-password body footer p small a:hover {
  text-decoration: underline;
}
html#login body footer nav ul, html#forgot-password body footer nav ul, html#reset-password body footer nav ul {
  padding: 0;
  margin: 0;
  display: flex;
}
html#login body footer nav ul li, html#forgot-password body footer nav ul li, html#reset-password body footer nav ul li {
  list-style: none;
  padding: 0 1rem 0 0;
}
html#login body footer nav ul li:last-child, html#forgot-password body footer nav ul li:last-child, html#reset-password body footer nav ul li:last-child {
  padding: 0;
}
html#login body footer nav ul li a, html#forgot-password body footer nav ul li a, html#reset-password body footer nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
html#login body footer nav ul li a:hover, html#forgot-password body footer nav ul li a:hover, html#reset-password body footer nav ul li a:hover {
  text-decoration: underline;
}
html#login body footer div#cookie div.layer, html#forgot-password body footer div#cookie div.layer, html#reset-password body footer div#cookie div.layer {
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
html#login body footer div#cookie div.wrapper, html#forgot-password body footer div#cookie div.wrapper, html#reset-password body footer div#cookie div.wrapper {
  max-width: 500px;
  background: #FFFFFF;
  color: #000000;
  padding: 2rem;
  margin: 0 auto;
  border: 3px solid #EBF0F6;
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  opacity: 0;
  animation: fadeUp 1s forwards;
  animation-delay: 1s;
}
html#login body footer div#cookie div.wrapper p, html#forgot-password body footer div#cookie div.wrapper p, html#reset-password body footer div#cookie div.wrapper p {
  padding: 0 2rem 0 0;
  margin: 0;
}
html#login body footer div#cookie div.wrapper p a, html#forgot-password body footer div#cookie div.wrapper p a, html#reset-password body footer div#cookie div.wrapper p a {
  color: #5922AF;
  text-decoration: underline;
}
html#login body footer div#cookie div.wrapper p a:hover, html#forgot-password body footer div#cookie div.wrapper p a:hover, html#reset-password body footer div#cookie div.wrapper p a:hover {
  text-decoration: none;
}
html#login body footer div#cookie div.wrapper button, html#forgot-password body footer div#cookie div.wrapper button, html#reset-password body footer div#cookie div.wrapper button {
  background: #19ABFF;
  color: #FFFFFF;
  padding: 0.8rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
html#login body footer div#cookie div.wrapper button:hover, html#forgot-password body footer div#cookie div.wrapper button:hover, html#reset-password body footer div#cookie div.wrapper button:hover {
  background: rgb(0, 145.3652173913, 229);
}

/* Add global styles for the private pages */
html#welcome.private {
  background-color: #5922AF;
  background-image: url("/assets/images/background.svg");
  background-size: cover;
  padding: 6rem 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
html#welcome.private body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
html#welcome.private body header {
  color: #000000;
  background: #FFFFFF;
  border-top: 3px solid #5922AF;
  border-right: 3px solid #5922AF;
  border-left: 3px solid #5922AF;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  padding: 3rem 3rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html#welcome.private body header figure svg {
  width: 100%;
  max-width: 350px;
}
html#welcome.private body header figure svg g path.cls-1 {
  fill: #000000;
}
html#welcome.private body header figure svg path.cls-2 {
  fill: #5922AF;
}
html#welcome.private body header nav ul {
  padding: 0;
  margin: 0;
  display: flex;
}
html#welcome.private body header nav ul li {
  list-style: none;
}
html#welcome.private body header nav ul li a {
  color: #FFFFFF;
  background: #19ABFF;
  text-decoration: none;
  padding: 1rem;
  border-radius: 0.5rem;
}
html#welcome.private body header nav ul li a:hover {
  background: rgb(0, 145.3652173913, 229);
}
html#welcome.private body main {
  color: #000000;
  background: #FFFFFF;
  border-right: 3px solid #5922AF;
  border-bottom: 3px solid #5922AF;
  border-left: 3px solid #5922AF;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 1rem 3rem 3rem 3rem;
}
html#welcome.private body main h1 {
  padding: 1rem 0;
  margin: 0;
}
html#welcome.private body main div#status p {
  display: flex;
  align-items: center;
}
html#welcome.private body main div#status p span.message {
  font-family: "Inter Bold", sans-serif;
  padding: 0 0 0 0.25rem;
}
html#welcome.private body main div#status.red {
  color: #FFFFFF;
  background: #FF1938;
}
html#welcome.private body main div#status, html#welcome.private body main div#statistics > div {
  color: #000000;
  background: #EBF0F6;
  padding: 1rem;
  margin: 1rem 0 0 0;
  border-radius: 0.5rem;
  align-items: flex-start;
}
html#welcome.private body main div#status p, html#welcome.private body main div#statistics > div p {
  padding: 0 0 0 0.5rem;
  margin: 0;
}
html#welcome.private body main div#accordion div.information {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
html#welcome.private body main div#accordion div.information figure {
  padding: 0 0.5rem 0 0;
  cursor: pointer;
}
html#welcome.private body main div#accordion div.information figure svg {
  width: 25px;
  height: 25px;
  transition: transform 0.1s ease-in-out;
}
html#welcome.private body main div#accordion div.information figure.active svg {
  transition: transform 0.1s ease-in-out;
  transform: rotate(90deg);
}
html#welcome.private body main div#accordion div.information p {
  margin: 0;
}
html#welcome.private body main div#accordion div.information p strong {
  cursor: pointer;
}
html#welcome.private body main div#accordion div#configuration {
  display: none;
  padding: 2rem;
  margin: 0 0 3rem 0;
  border: 3px solid #EBF0F6;
  border-radius: 1rem;
  opacity: 0;
  animation: fadeIn 1s forwards;
}
html#welcome.private body main div#accordion div#configuration h2 {
  margin-top: 0;
}
html#welcome.private body main div#accordion div#configuration form#afterbuy {
  padding: 1rem 0;
}
html#welcome.private body main div#accordion div#configuration form#afterbuy label {
  display: block;
  margin-bottom: 0.5rem;
}
html#welcome.private body main div#accordion div#configuration form#afterbuy label span {
  color: #19ABFF;
}
html#welcome.private body main div#accordion div#configuration form#afterbuy input {
  width: 100%;
  padding: 1rem;
  margin: 0 0 1rem 0;
  border-width: 2px;
  border-style: solid;
  border-color: #EBF0F6;
  border-radius: 0.5rem;
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
}
html#welcome.private body main div#accordion div#configuration form#afterbuy button[type=submit] {
  width: 100%;
  color: #FFFFFF;
  background: #5922AF;
  font-size: 1rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
html#welcome.private body main div#accordion div#configuration form#afterbuy button[type=submit]:hover {
  background: rgb(67.2822966507, 25.7033492823, 132.2966507177);
}
html#welcome.private body main div#accordion div#configuration div#mirakl {
  padding: 1rem 0 0 0;
}
html#welcome.private body main div#accordion div#configuration div#mirakl div.button {
  width: fit-content;
  color: #FFFFFF;
  background: #000000;
  font-size: 1rem;
  text-decoration: none;
  padding: 1rem;
  margin: 2rem 0 0 0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
html#welcome.private body main div#accordion div#configuration div#mirakl div.button:hover {
  background: hsl(0, 0%, -10%);
}
html#welcome.private body main div#accordion div#configuration div#mirakl div.button figure svg {
  width: 20px;
  height: auto;
}
html#welcome.private body main div#accordion div#configuration div#mirakl div.button figure svg path {
  fill: #FFFFFF;
}
html#welcome.private body main div#accordion div#configuration div#mirakl div.button span {
  padding: 0 0 0 0.75rem;
}
html#welcome.private body main div#accordion div#configuration div#mirakl div.button.disabled {
  background: rgb(178.5, 178.5, 178.5);
  cursor: not-allowed;
}
html#welcome.private body main div#accordion div#configuration div#danger {
  padding: 2rem;
  margin: 3rem 0 0 0;
  border: 3px solid #FF1938;
  border-radius: 1rem;
}
html#welcome.private body main div#accordion div#configuration div#danger form#revoke label {
  display: block;
  margin-bottom: 0.5rem;
}
html#welcome.private body main div#accordion div#configuration div#danger form#revoke button[type=submit] {
  width: 100%;
  color: #FFFFFF;
  background: #FF1938;
  font-size: 1rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}
html#welcome.private body main div#accordion div#configuration div#danger form#revoke button[type=submit]:disabled {
  cursor: not-allowed;
}
html#welcome.private body main div#accordion div#configuration div#danger form#revoke button[type=submit]:hover {
  background: rgb(229, 0, 30.8652173913);
}
html#welcome.private body main div#accordion div#configuration.active {
  display: block;
  opacity: 1;
}
html#welcome.private body main div#logs div.error {
  color: #FFFFFF;
  background: #FF1938;
  padding: 1rem;
  margin: 1rem 0 -1rem 0;
  border-radius: 0.5rem;
  display: none;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s forwards;
}
html#welcome.private body main div#logs div.error figure {
  width: 20px;
  height: 20px;
  display: inline-block;
}
html#welcome.private body main div#logs div.error figure svg {
  fill: #FFFFFF;
}
html#welcome.private body main div#logs div.error p {
  padding: 0 0 0 0.5rem;
  margin: 0;
}
html#welcome.private body main div#logs div.error p span {
  color: #FFFFFF;
  text-decoration: underline;
  cursor: pointer;
}
html#welcome.private body main div#logs div.output {
  height: 550px;
  background: #000000;
  color: #FFFFFF;
  padding: 1rem 2rem;
  margin: 2rem 0 0 0;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  overflow-y: scroll;
  overflow-x: hidden;
  white-space: pre-wrap;
}
html#welcome.private body main div#logs div.output p {
  font-family: "JetBrains Mono Regular", monospace;
  font-size: 0.8rem;
  line-height: 1rem;
}
html#welcome.private body main div#logs div.settings {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
}
html#welcome.private body main div#logs div.settings div.search {
  display: flex;
  align-items: center;
}
html#welcome.private body main div#logs div.settings div.search figure {
  height: 15px;
}
html#welcome.private body main div#logs div.settings div.search figure svg {
  width: 15px;
  height: 15px;
}
html#welcome.private body main div#logs div.settings div.search input#search {
  color: #000000;
  background: transparent;
  font-size: 0.8rem;
  padding: 0 0 0 0.5rem;
  border: none;
}
html#welcome.private body main div#logs div.settings div.search input#search:focus {
  outline: none;
}
html#welcome.private body main div#logs div.settings div.search input#search::placeholder {
  color: #000000;
}
html#welcome.private body main div#logs div.settings div.search input#search::-ms-clear, html#welcome.private body main div#logs div.settings div.search input#search::-ms-reveal {
  width: 0;
  height: 0;
  display: none;
}
html#welcome.private body main div#logs div.settings div.search input#search::-webkit-search-decoration, html#welcome.private body main div#logs div.settings div.search input#search::-webkit-search-cancel-button, html#welcome.private body main div#logs div.settings div.search input#search::-webkit-search-results-button, html#welcome.private body main div#logs div.settings div.search input#search::-webkit-search-results-decoration {
  display: none;
}
html#welcome.private body main div#logs div.settings div.download {
  display: flex;
  align-items: center;
}
html#welcome.private body main div#logs div.settings div.download figure {
  width: 20px;
  height: 20px;
  padding: 0 0.25rem 0 0;
  display: inline-block;
}
html#welcome.private body main div#logs div.settings div.download figure svg {
  fill: #000000;
}
html#welcome.private body main div#logs div.settings div.download p {
  margin: 0;
}
html#welcome.private body main div#logs div.settings div.download a {
  color: #000000;
  padding: 0 0 0 0.5rem;
}
html#welcome.private body footer {
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html#welcome.private body footer p small a {
  color: #FFFFFF;
  text-decoration: none;
}
html#welcome.private body footer p small a:hover {
  text-decoration: underline;
}
html#welcome.private body footer nav ul {
  display: flex;
  padding: 0;
  margin: 0;
}
html#welcome.private body footer nav ul li {
  list-style: none;
  padding: 0 1rem 0 0;
}
html#welcome.private body footer nav ul li:last-child {
  padding: 0;
}
html#welcome.private body footer nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
}
html#welcome.private body footer nav ul li a:hover {
  text-decoration: underline;
}
html#welcome.private body footer nav ul li.mobile {
  display: none;
}

html#not-found {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
html#not-found body {
  height: fit-content;
  padding: 3rem;
  text-align: center;
}
html#not-found body footer {
  padding: 1rem 0;
}

html#redirect {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
html#redirect body {
  height: fit-content;
  padding: 3rem;
  text-align: center;
}

@media only screen and (max-width: 800px) {
  html#login, html#forgot-password, html#reset-password {
    height: auto;
    background: #FFFFFF;
    align-items: normal;
  }
  html#login body main, html#forgot-password body main, html#reset-password body main {
    border: none;
    padding: 2rem 2rem 0;
  }
  html#login body footer, html#forgot-password body footer, html#reset-password body footer {
    padding: 1rem 2rem 3rem;
    display: block;
  }
  html#login body footer p small, html#forgot-password body footer p small, html#reset-password body footer p small {
    color: #000000;
  }
  html#login body footer p small a, html#forgot-password body footer p small a, html#reset-password body footer p small a {
    color: #000000;
  }
  html#login body footer nav ul li a, html#forgot-password body footer nav ul li a, html#reset-password body footer nav ul li a {
    color: #5922AF;
  }
  html#login body footer nav ul li a:hover, html#forgot-password body footer nav ul li a:hover, html#reset-password body footer nav ul li a:hover {
    color: rgb(67.2822966507, 25.7033492823, 132.2966507177);
  }
  html#login body footer div#cookie div.wrapper, html#forgot-password body footer div#cookie div.wrapper, html#reset-password body footer div#cookie div.wrapper {
    width: auto;
    display: block;
    left: 2rem;
  }
  html#login body footer div#cookie div.wrapper button, html#forgot-password body footer div#cookie div.wrapper button, html#reset-password body footer div#cookie div.wrapper button {
    margin: 1rem 0 0 0;
  }
  html#welcome.private {
    background: #FFFFFF;
    padding: 0;
  }
  html#welcome.private body header {
    border: none;
    border-radius: 0;
    padding: 3rem 2rem 0;
  }
  html#welcome.private body header nav {
    display: none;
  }
  html#welcome.private body main {
    border: none;
    border-radius: 0;
    padding: 2rem 2rem 0;
  }
  html#welcome.private body main div#logs div.output {
    border-radius: 1rem;
  }
  html#welcome.private body main div#logs div.settings {
    display: block;
  }
  html#welcome.private body main div#logs div.settings div.search {
    padding: 0 0 1rem 0;
  }
  html#welcome.private body footer {
    color: #5922AF;
    background: #FFFFFF;
    padding: 1rem 2rem 3rem;
    display: block;
  }
  html#welcome.private body footer p small {
    color: #000000;
  }
  html#welcome.private body footer p small a {
    color: #000000;
  }
  html#welcome.private body footer nav ul li a {
    color: #5922AF;
  }
  html#welcome.private body footer nav ul li a:hover {
    color: rgb(67.2822966507, 25.7033492823, 132.2966507177);
  }
  html#welcome.private body footer nav ul li.mobile {
    display: block;
  }
}

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