@font-face {
  font-family: "Graphik-Bold";
  src: url("../fonts/Graphik-Bold.otf") format("opentype");
}
@font-face {
  font-family: "Graphik-Regular";
  src: url("../fonts/Graphik-Regular.otf") format("opentype");
}
@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}
html, body {
  font-size: 16px;
  background-color: #181A20;
  font-family: "Graphik-Regular";
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  /*
  * HELPERS
  */
}
body.noselect {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body main {
  padding: 0 15px;
}
body main:nth-child(2) {
  padding-top: 90px;
  flex: 1;
  overflow-y: auto;
}
body main:nth-child(3) {
  padding-top: 140px;
  flex: 1;
  overflow-y: auto;
  padding-inline: 0;
  position: relative;
}
body .text_preview {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 300px;
}
body .preview_link {
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  color: #009694 !important;
  display: block;
}
body .remove-file, body .remove-note {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #DC4B38 !important;
  font-weight: bold;
  font-size: 1.25rem;
}
body .pending {
  color: #BCA112;
}
body .enabled {
  color: #009694;
}
body .disabled {
  color: #DC4B38;
}
body .flex-1 {
  flex: 1 !important;
}
body .pr-30 {
  padding-right: 30px !important;
}
body .mw-160 {
  max-width: 160px !important;
}
body .mw-400 {
  max-width: 400px !important;
}
body .white-text {
  color: #FFFFFF !important;
}
body .gray-text {
  color: #757575 !important;
}
body .gray-text-2 {
  color: #9E9E9E !important;
}
body .text-small {
  font-size: 0.625rem;
}
body .text-medium {
  font-size: 0.75rem;
}
body .text-normal {
  font-size: 0.875rem;
}
body .op-1 {
  opacity: 0.1 !important;
}
body .op-2 {
  opacity: 0.2 !important;
}
body .op-3 {
  opacity: 0.3 !important;
}
body .op-4 {
  opacity: 0.4 !important;
}
body .op-5 {
  opacity: 0.5 !important;
}
body .op-6 {
  opacity: 0.6 !important;
}
body .op-7 {
  opacity: 0.7 !important;
}
body .op-8 {
  opacity: 0.8 !important;
}
body .op-9 {
  opacity: 0.9 !important;
}
body .op-10 {
  opacity: 1 !important;
}
body .green_button {
  color: #FFFFFF;
  background-color: #009694;
  border-radius: 100px;
  font-size: 1rem;
}
body .green_button:hover {
  border-color: #009694;
  color: #FFFFFF;
}
body input[type=text]:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 150, 148, 0.25);
}
body input[type=date] {
  color-scheme: dark;
}
body .cta_btn {
  padding: 5px 10px;
}
body #toast-container > div {
  opacity: 1;
  border-radius: 10px;
}
body .toast-success {
  background-color: #1F222A;
  border: 2px solid #009694;
}
body .toast-error {
  background-color: #1F222A;
  border: 2px solid #DC4B38;
}
body .error {
  display: block;
  font-size: 0.75rem;
  color: #DC4B38;
  margin-top: 5px;
}
body .no-results {
  font-size: 1.25rem;
  text-align: center;
  width: 100%;
}
body #load-more-trigger {
  width: 100%;
  height: 30px !important;
  background-color: transparent;
  visibility: hidden;
}
body .no-border {
  border: none !important;
  pointer-events: none;
  cursor: default !important;
}
body .no-border:hover {
  box-shadow: none !important;
}
body .w-fit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}
body .form-check-input:checked {
  background-color: #009694;
  border-color: #009694;
}
body .spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-left-color: #FFFFFF;
  animation: spin 1s ease infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body .modal-content {
  background-color: #393E4C;
  color: #FFFFFF;
}
body .modal-content .modal-header {
  border-bottom: none;
}
body .modal-content .close_modal {
  color: #FFFFFF;
  border: none;
  background: transparent;
  height: auto;
}
body .modal-content .btn-primary {
  background-color: #009694;
  border-color: #009694;
}
body .modal-content .btn-primary:hover {
  background-color: transparent;
}
body .modal-content .btn-danger {
  background-color: #DC4B38;
  border-color: #DC4B38;
}
body .modal-content .btn-danger:hover {
  background-color: transparent;
}
body .modal-content .modal-footer {
  border-top: none;
}
body .warning_red {
  color: #DC4B38;
  font-size: 0.875rem;
}
body footer a {
  color: #009694;
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #fff;
}

.login_container form, .reset_password_container form {
  width: 380px;
}
@media only screen and (max-width: 480px) {
  .login_container form, .reset_password_container form {
    width: 300px;
  }
}
.login_container .login_logo_container, .reset_password_container .login_logo_container {
  width: 100%;
}
.login_container .login_logo_container svg, .reset_password_container .login_logo_container svg {
  margin: auto;
  width: 100%;
}
.login_container .login_logo_container h2, .reset_password_container .login_logo_container h2 {
  font-size: 1.219rem;
  font-weight: 400;
  font-family: "Graphik-Regular";
  margin-bottom: 70px;
}
.login_container .password_wrapper, .login_container .email_wrapper, .reset_password_container .password_wrapper, .reset_password_container .email_wrapper {
  position: relative;
  width: 100%;
}
.login_container .password_wrapper input, .login_container .email_wrapper input, .reset_password_container .password_wrapper input, .reset_password_container .email_wrapper input {
  width: 100%;
  padding: 15px 50px;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  background-color: #1F222A;
  color: #9E9E9E;
}
.login_container .password_wrapper .icon, .login_container .email_wrapper .icon, .reset_password_container .password_wrapper .icon, .reset_password_container .email_wrapper .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9E9E9E;
}
.login_container .password_wrapper .icon_prefix, .login_container .email_wrapper .icon_prefix, .reset_password_container .password_wrapper .icon_prefix, .reset_password_container .email_wrapper .icon_prefix {
  left: 20px;
}
.login_container .password_wrapper .icon_suffix, .login_container .email_wrapper .icon_suffix, .reset_password_container .password_wrapper .icon_suffix, .reset_password_container .email_wrapper .icon_suffix {
  right: 20px;
  cursor: pointer;
  z-index: 1;
  pointer-events: inherit;
}
.login_container .password_wrapper ::-moz-placeholder, .login_container .email_wrapper ::-moz-placeholder, .reset_password_container .password_wrapper ::-moz-placeholder, .reset_password_container .email_wrapper ::-moz-placeholder {
  color: #9E9E9E;
}
.login_container .password_wrapper ::placeholder, .login_container .email_wrapper ::placeholder, .reset_password_container .password_wrapper ::placeholder, .reset_password_container .email_wrapper ::placeholder {
  color: #9E9E9E;
}
.login_container .password_wrapper #pasword, .login_container .email_wrapper #pasword, .reset_password_container .password_wrapper #pasword, .reset_password_container .email_wrapper #pasword {
  padding-left: 40px;
}
.login_container .submit_btn, .reset_password_container .submit_btn {
  color: #FFFFFF;
  background-color: #009694;
  border-radius: 100px;
  font-size: 1rem;
  padding: 18px 16px;
}
.login_container #forgot_password a, .reset_password_container #forgot_password a {
  color: #009694;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.login_container .login_error, .reset_password_container .login_error {
  font-size: 0.875rem;
  color: red;
}

.reset_password_container {
  color: #FFFFFF;
}
.reset_password_container h2 {
  font-size: 1.219rem;
  font-weight: 400;
  font-family: "Graphik-Regular";
  margin-bottom: 70px;
}
.reset_password_container svg {
  margin: auto;
  width: 100%;
}

.check_email_container {
  color: #FFFFFF;
}
.check_email_container svg {
  margin: auto;
  width: 100%;
  margin-bottom: 100px;
}
.check_email_container a {
  color: #009694;
}/*# sourceMappingURL=login.css.map */