@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
:root {
  --background-colored: linear-gradient(
      to right bottom,
      #040404,
      #121212 25%,
      #1b1b1b 50%,
      #272727
    ),
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAB+/0lEQVR4nFSddziX//v+H5SkbkQIZUcKKdIilMooZbRLS6lUQqVFkwrtrWhKU4q0NFRU75DsHQ17pElUvn98ft3H8fsXB1687ufzus7rcZ4Xpqamgo6OjrB9+3Zh5syZwuDBgwUfHx/Bz89PuHz5stCz");
  --text-color: white;
  --background-color: #333;
  --text-color: #ffffff;
  --nav-background: #272727;
  --input-background: #444;
  --link-color: #ffffff6e;
  --hover-link-color: #ffffff;
  --scrollbar-track: #333333;
  --scrollbar-thumb: #8d8d8d;
  --inactive: rgba(32, 32, 32, 0.533);
  --text-inactive: rgba(255, 255, 255, 0.404);
  --textarea-bg: rgba(19, 19, 19, 0.22);
  --invert: invert(0);
  --basic-addon-color: #292929;
  --border-light: none;
  --disabled-button-color: #727272;
  --disabled-button-background: #494949;
  --title-color: #ffffff;
  --active-color: #ffffff;
  --theme-button-color: #1a1a1a;
}

[data-theme="light"] {
  --background-colored: linear-gradient(
    to right bottom,
    #00b7ff,
    #25a2e7,
    #308ece,
    #357ab5,
    #35679d
  );
  --title-color: #0f93ff;
  --text-color: black;
  --background-color: #f2f5fa;
  --text-color: #000000;
  --nav-background: #ffffff;
  --input-background: #ffffff;
  --textarea-bg: rgba(226, 242, 255, 0.404);
  --link-color: #0000006e;
  --hover-link-color: rgba(79, 176, 255, 0.74);
  --scrollbar-track: #e5e5e5;
  --scrollbar-thumb: #9b9b9b;
  --inactive: rgba(132, 200, 255, 0.404);
  --text-inactive: rgba(0, 63, 105, 0.404);
  --invert: invert(0);
  --basic-addon-color: rgba(79, 176, 255, 0.74);
  --border-light: rgba(132, 200, 255, 0.404);
  --disabled-button-color: #3cb1ffa4;
  --disabled-button-background: #c7efff;
  --title-color: #12345f;
  --active-color: #0d6efd;
  --theme-button-color: #ffffff;
}

@-webkit-keyframes icon-transition {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes icon-transition {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

h1,
h2,
h3,
h4,
legend {
  color: var(--title-color);
}

.text {
  color: var(--text-color);
}

body {
  min-height: 110vh;
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-image: var(--background-color);
  scroll-behavior: none;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  --sb-track-color: var(--scrollbar-track);
  --sb-thumb-color: var(--scrollbar-thumb);
  --sb-size: 5px;
  background: var(--background-colored);
  background-blend-mode: screen;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 15px;
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 15px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

/* @supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
} */
nav {
  top: 0;
  height: 100vh;
  position: fixed;
  z-index: 100;
  max-width: 12.5em;
}

nav hr {
  width: 100%;
}

.nav {
  background-color: var(--nav-background);
  border-radius: 0px 20px 20px 0px;
  max-width: 12.5em;
  padding: 2em;
}

.title-nav {
  color: var(--text-color);
  width: 180px;
  text-align: left;
  -webkit-transform: translateY(-6em);
          transform: translateY(-6em);
  max-width: 12.5em;
}

.nav-link {
  width: 100%;
  padding: 0;
  color: var(--link-color);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.nav-link:hover {
  color: var(--hover-link-color);
}

.nav-link.exit {
  opacity: 0.5;
}

.nav-link.exit:hover {
  opacity: 1;
}

.nav-link.active {
  color: var(--active-color);
}

.cont-inputs {
  background: var(--input-background);
}

.textarea {
  color: var(--text-color);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  height: 100%;
  border: 2px solid var(--border-light) !important;
  background: var(--textarea-bg);
}

.textarea:focus {
  width: 100%;
  background-color: var(--input-background);
  outline: 2px solid var(--active-color);
}

.full-text-area {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 45% !important;
  height: 45% !important;
  z-index: 999;
}

.full-text-area::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: #00000088;
  z-index: -1;
}

.pager-limiter {
  overflow-y: hidden;
}

.page-loader {
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
  -webkit-transition: 0.6s ease-in;
  transition: 0.6s ease-in;
  z-index: 100;
}

.page-loader::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 120vh;
  background-color: var(--background-color);
}

.disabled {
  cursor: wait;
  pointer-events: none;
  background: none;
  opacity: 0.8;
  border: 2px solid var(--disabled-button-color);
  overflow: hidden;
}

.btn-primary:disabled {
  border: none;
  opacity: 1;
  color: var(--disabled-button-color);
  background: var(--disabled-button-background);
}

.link {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  text-decoration: none;
  color: var(--link-color);
}

.link:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  color: var(--hover-link-color);
}

.spinner-border {
  -webkit-filter: var(--invert);
          filter: var(--invert);
}

.icon-transition {
  -webkit-animation-name: icon-transition;
          animation-name: icon-transition;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.nav-bottom {
  margin-top: 100%;
}

.nav-top {
  margin-bottom: 100%;
}

.themes {
  font-weight: 600;
  font-size: 20px;
  border-radius: 20px;
  width: 92px;
  height: 32px;
  border: 1px solid var(--active-color);
}

.themes i {
  width: 20px;
}

.themes .theme-toggle-button {
  border: none;
  background-color: transparent;
  border-radius: 20px;
  color: #b4b4b4;
}

.themes .theme-toggle-button.theme-active {
  color: var(--theme-button-color);
}

.themes #background-theme-button {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  content: "";
  width: 48px;
  height: 30px;
  padding: 0.1em;
  padding: 0.1em;
  z-index: -1;
  -webkit-transform: translateX(23px);
          transform: translateX(23px);
  border-radius: 20px;
  background-color: var(--active-color);
  position: absolute;
}

.modal {
  color: var(--text-color);
}

.modal .form-control {
  color: var(--text-color);
}

.modal .modal-header,
.modal .modal-footer {
  border: none;
}

.modal .btn-close {
  display: none;
}

.modal label {
  color: var(--text-color);
}

.modal .modal-content {
  background-color: var(--background-color);
}

:root {
  --input-background: #20202063;
  --label-color: none;
}

[data-theme="light"] {
  --input-background: #a4e5ff62;
  --label-color: #0a7daa;
}

body {
  background: var(--background-colored);
}

.content {
  background-color: var(--background-color);
  width: 40%;
}

input:not(input[type="submit"]) {
  background: var(--input-background);
  border: none;
  border-radius: 15px;
}

label {
  color: var(--label-color);
}

label::after {
  --bs-body-bg: none;
}

#togglePassword {
  color: var(--text-color);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  margin-left: 39%;
  opacity: 0.5;
  cursor: pointer;
}
/*# sourceMappingURL=Auth.css.map */