@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:300,400,500,600,700,800);
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */
.Scripts-Components-Login-Login-login-form-___sso-account-create__login-background___9pVMI {
    background: #242d34;
    min-height: 100vh;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-container___jzNzo {
    width: 400px;
    padding: 8% 0 0;
    margin: auto;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form___2t7iD {
    position: relative;
    z-index: 1;
    background: #ffffff;
    max-width: 400px;
    margin: 0 auto 100px;
    padding: 30px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__learnful-image___GawtN {
    max-width: 40%;
    max-height: 40%;
    margin-top: 10px;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-title-page___dz8XD {
    color: #242d34;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 700;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-welcome-msg___XzNsN .Scripts-Components-Login-Login-login-form-___sso-account-create__welcome___fhDHW {
    margin: 0;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-welcome-msg___XzNsN .Scripts-Components-Login-Login-login-form-___sso-account-create__msg___LTccx {
    margin: 10px 0;
    font-weight: 500;
    font-size: 15px;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__input-text___1K\+3v {
    outline: 0;
    width: 100%;
    margin: 0 0 15px;
    padding: 12px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__input-text___1K\+3v:hover {
    border: 1px solid #594b65;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__input-text___1K\+3v:focus {
    border: 1px solid #594b65;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__button___wssEb {
    outline: 0;
    background: #41A592;
    border-radius: 8px;
    border: none;
    width: 200px;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 10px auto;
    font-family: Poppins;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__button--highlight___RRC7H:hover, .Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__button--highlight___RRC7H:active, .Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__button--highlight___RRC7H:focus {
    transform: translateY(-1px);
    background-color: #1c706d;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__button___wssEb:focus:focus-visible {
    outline: 2px solid #000000;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__button___wssEb:not(:focus-visible) {
    outline: none;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__cancel-button___OY0ZB {
    background: none;
    color: #6b7280;
    margin: 0 auto;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__cancel-button___OY0ZB:hover{
    color: #000000;
    text-decoration: underline;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__message___OeIbx {
    color: #FF0000;
    margin: 20px 0 0;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__forgot-link-container___rWjC1 {
    margin: 10px 0 0 0;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__forgot-link___Zs97E {
    font-size: 15px;
    color: #7e7e7e;
    text-decoration: none;
}

    .Scripts-Components-Login-Login-login-form-___sso-account-create__forgot-link___Zs97E:hover {
        color: #242d34;
    }

.Scripts-Components-Login-Login-login-form-___sso-account-create__section-lbl___vAweO {
    font-size: 12px;
    text-align: left;
    font-weight: 500;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__id-icon___Npmsp {
    vertical-align: sub;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__asterisk___dg-sP {
    color: red;
}

.Scripts-Components-Login-Login-login-form-___sso-account-create__login-form__message___OeIbx {
    color: #FF0000;
    display: block;
    margin: 20px 0 0;
}

@media screen and (max-width: 420px) {
    .Scripts-Components-Login-Login-login-form-___sso-account-create__login-container___jzNzo {
        width: 300px;
    }

    .Scripts-Components-Login-Login-login-form-___sso-account-create__login-form___2t7iD {
        max-width: 300px;
    }
}

.Styles-___form__field-container___WJ66l {
    margin: 0 0 10px 0;
}

.Styles-___form__field-container__label___h5oNP {
    display: inline-block;
    height: 22px;
    text-align: left;
    width: 130px;
    margin: 0 10px 0 0;
}

.Styles-___form__field-container__input-text___kdbdZ {
    width: 280px;
    height: 32px;
    border: 1px solid gray;
    border-radius: 6px;
    padding: 0 6px;
}

.Styles-___form__field-container__input-text--short___7fxcW {
    width: 120px;
}

.Styles-___form__field-container__input-text--medium___bO3P9 {
    width: 170px;
}

.Styles-___form__field-container__input-text--long___P4ig9 {
    width: 380px;
}

.Styles-___form__field-container__input-select___\+1xgs {
    width: 280px;
    height: 32px;
    border: 1px solid gray;
    border-radius: 6px;
    padding: 0 6px;
}

.Styles-___form__field-container__input-select--long___Un9wr {
    width: 384px;
}

.Styles-___form__field-container__input-select--medium___oYygh {
    width: 170px;
}

.Styles-___form__field-container__input-select--short___o0GcK {
    width: 120px;
}

.Styles-___form__drag-handle___ltu86 {
    cursor: move;
}

.Styles-___form__styled-icon___\+Ffik {
    background: #ffedc4;
    padding: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #ffb200;
    margin-right: 4px;
}

.Styles-___form__delete-icon___QGBDh {
    color: #FF7169;
    vertical-align: middle;
    font-size: 20px;
}

.Styles-___form__delete-icon___QGBDh:hover{
    color: #e5655e;
}

.Styles-___form__lms-style___C\+cSW {
    width: 1.2em;
    min-width: 1.2em;
    height: 1.2em;
    margin: 0;
    vertical-align: top;
    background-color: #F5F3F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #1E1E1E;
    box-shadow: 2px 2px 0px #1E1E1E;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.Styles-___form__lms-style___C\+cSW:checked {
    background-color: #5D4B65;
    border-color: rgba(105, 108, 255, 0.08);
}

.Styles-___form__lms-style___C\+cSW:focus {
    border-color: #5D4B65;
    outline: 0;
    box-shadow: 2px 2px 0px #1E1E1E;
}

.Styles-___form__lms-style___C\+cSW:active {
    filter: brightness(90%);
}

.Styles-___form__lms-style___C\+cSW[type=radio] {
    border-radius: 50%;
}

.Styles-___form__lms-style___C\+cSW[type=checkbox] {
    border-radius: 0.25em;
}

.Styles-___form__lms-style___C\+cSW:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='1.5' fill='%23fff'/%3e%3c/svg%3e");
}

.Styles-___form__lms-style___C\+cSW:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.Styles-___form__option-label___RylUK {
    margin: 5px 0 0 10px;
    cursor: pointer;
}

.Styles-___form__normal-style___m5Dsl {
    width: 1.2em;
    height: 1.2em;
    margin: 1px 4px;
    vertical-align: top;
    background-color: #F5F3F6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #1E1E1E;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.Styles-___form__normal-style___m5Dsl:checked {
    background-color: #5D4B65;
    border-color: rgba(105, 108, 255, 0.08);
}

.Styles-___form__normal-style___m5Dsl:focus {
    border-color: #5D4B65;
    outline: 2px solid #000;
}

.Styles-___form__normal-style___m5Dsl:focus:focus-visible {
    outline-offset: 2px;
}

.Styles-___form__normal-style___m5Dsl:focus:not(:focus-visible) {
    outline: none;
}

.Styles-___form__normal-style___m5Dsl:active {
    filter: brightness(90%);
}

.Styles-___form__normal-style___m5Dsl[type=radio] {
    border-radius: 50%;
}

.Styles-___form__normal-style___m5Dsl[type=checkbox] {
    border-radius: 0.25em;
}

.Styles-___form__normal-style___m5Dsl:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='1.5' fill='%23fff'/%3e%3c/svg%3e");
}

.Styles-___form__normal-style___m5Dsl:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.Styles-___form__asterisk___puqw1 {
    color: #FF7169;
}
/*****************/
/* Modal-related */
/*****************/
.Styles-___form__modal-overlay___wzVom {
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.Styles-___form__modal-form___dGkBu {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%;
    overflow: hidden;
}

.Styles-___form__modal-form-main-container___pUhAe {
    width: 35%;
    min-width: 600px;
}

.Styles-___form__modal-form-container-section___WojLl {
    margin: 10px;
    text-align: left;
}

.Styles-___form__modal-form__title___ucqYj {
    background: white;
    padding: 0 8px 8px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 10px 0;
}

.Styles-___form__modal-form__layout___Iwoun {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50px auto 1fr 70px;
    grid-template-areas:
        "header"
        "precontent"
        "content"
        "footer";
    gap: 0;
    align-items: center;
}

.Styles-___form__modal-form__section--header___2uMbs {
    grid-area: header;
}

.Styles-___form__modal-form__section--precontent___yzVZV {
    grid-area: precontent;    
}

.Styles-___form__modal-form__section--content___8xBTb {
    grid-area: content;
    height: 100%;
    margin: 20px 0 0 0;
    overflow: auto;
}

.Styles-___form__modal-form__section--footer___iRYga {
    grid-area: footer;
    padding-top: 10px;
}

.Styles-___form__modal-form__btn-container___mdT7Z {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.Styles-___form__modal-form__cancel-btn___qbpdL {
    background-color: #FA8E44;
    border-radius: 5px;
    color: white;
    padding: 14px 25px;
    font-weight: 500;
    border: none;
    font-family: "Poppins";
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 60px;
    margin-left: 20px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Styles-___form__modal-form__cancel-btn___qbpdL:hover {
    background-color: #c87136;
    transform: translateY(-1px);
}

.Styles-___form__modal-form__cancel-btn___qbpdL:active {
    background-color: #c87136;
}

.Styles-___form__modal-form__ok-btn___ay\+lX {
    background-color: #41A592;
    border-radius: 5px;
    color: white;
    padding: 14px 25px;
    font-weight: 500;
    border: none;
    font-family: "Poppins";
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Styles-___form__modal-form__ok-btn___ay\+lX:hover {
    background-color: #1c706d;
    transform: translateY(-1px);
}

.Styles-___form__modal-form__ok-btn___ay\+lX:active {
    background-color: #1c706d;
}

.Styles-___form__modal-form__ok-btn--disabled___oVt66 {
    background-color: #969696;
}

.Styles-___form__modal-form__ok-btn--disabled___oVt66:hover {
    background-color: #969696;
    pointer-events: none;
}

.Styles-___form__modal-form__ok-btn--neutral___SFmFN {
    background-color: #55acee;
    border-radius: 5px;
    color: white;
    padding: 14px 25px;
    font-weight: 500;
    border: none;
    font-family: "Poppins";
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Styles-___form__modal-form__ok-btn--neutral___SFmFN:hover {
    background-color: #6fc6ff;
    transform: translateY(-1px);
}

.Styles-___form__modal-form__ok-btn--neutral___SFmFN:active {
    background-color: #6fc6ff;
}

.Styles-___form__modal-form__save-btn___shmyh {
    background-color: #29A19C;
    border-radius: 5px;
    color: white;
    padding: 14px 25px;
    font-weight: 500;
    border: none;
    font-family: "Poppins";
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Styles-___form__modal-form__save-btn___shmyh:hover {
    background-color: #1c706d;
    transform: translateY(-1px);
}

.Styles-___form__modal-form__save-btn___shmyh:active {
    background-color: #1c706d;
}

.Styles-___form__disabled-btn___W0FFq {
    background-color: #969696;
}

.Styles-___form__modal-form__remove-btn___IuVIv {
    background-color: #FF7169;
    border-radius: 5px;
    color: white;
    padding: 14px 25px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    min-width: 60px;
    cursor: pointer;
    border: none;
    font-family: "Poppins";
    font-size: 14px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Styles-___form__modal-form__remove-btn___IuVIv:hover{
    background: #e5655e;
    transform: translateY(-1px);
}

@media screen and (max-height: 768px){
    .Styles-___form__modal-overlay___wzVom{
        padding-top: 30px;
    }
}
/*****************/
/* Table-related */
/*****************/
.Styles-___form__table-child___x-Zsr {
    border-collapse: collapse;
    width: 100%;
}

.Styles-___form__table-child-header___1rz-A {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.Styles-___form__table-child-header--left___zLM7u {
    text-align: left;
}

.Styles-___form__table-child-header--right___aKcNb {
    text-align: right;
}

.Styles-___form__table-child-header--center___4keei {
    text-align: center;
}

.Styles-___form__table-child-data___g1Kkw {
    padding: 4px 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.Styles-___form__table-child-data--left___stCir {
    text-align: left;
}

.Styles-___form__table-child-data--right___TmuPI {
    text-align: right;
}

.Styles-___form__table-child-data--center___gqIcD {
    text-align: center;
}
/*****************/
/* OSS-related */
/*****************/
.Styles-___form__sync-with-oss__btn___eyO2r {
    border-radius: 5px;
    padding: 14px 25px;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    margin: 0 20px;
    color: #fff;
    position: relative;
    display: inline-block;
    cursor: pointer;
    background-color: #4B6289;
    min-width: 55px;
    border: none;
    font-family: "Poppins";
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Styles-___form__sync-with-oss__btn___eyO2r:hover {
    background-color: #34445f;
    transform: translateY(-1px);
}

.Styles-___form__sync-with-oss__btn___eyO2r:active {
    background-color: #34445f;
}

.Styles-___form__sync-with-oss__btn--disabled___R4hfu {
    background-color: #bdc4c9;
    pointer-events: none;
}

.Styles-___form__sync-with-oss__btn___eyO2r:focus:not(:focus-visible) {
    outline: none;
}
.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select___MzBCL {
    background-color: white;
    margin: auto;
    position: relative;
    text-align: center;
    top: 18%;
    width: 800px;
    border-radius: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select--multiple___ziEWh {
    padding: 30px 30px 50px 30px;
    border-radius: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__learnful-image___nKTZC {
    width: 180px;
    margin-bottom: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__select-icon___pctXT{
    color: #ffb200;
    font-size: 30px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select-title___iRyK5{
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 15px 0;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select__msg--multiple___sIBFQ {
    display: inline-block;
    text-align: left;
    line-height: 26px;
    margin-top: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select__role___WcxmB {
    margin: 20px 0 0 0;
    padding: 10px;
    font-size: 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .04);
    border: none;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select--none___E5zI3 {
    padding: 90px 100px 0 100px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select__msg--none___CXCRO {
    display: inline-block;
    text-align: left;
    line-height: 26px;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-form__button___C2ovj {
    outline: 0;
    background: #41A592;
    border: none;
    border-radius: 8px;
    padding: 10px;
    color: #FFFFFF;
    font-size: 14px;
    width: 100px;
    cursor: pointer;
    margin: 0 0 0 20px;
    font-family: Poppins;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Scripts-Components-Login-Login-login-form-___login-type-select__login-form__button--highlight___cchkd:hover, .Scripts-Components-Login-Login-login-form-___login-type-select__login-form__button--highlight___cchkd:active, .Scripts-Components-Login-Login-login-form-___login-type-select__login-form__button--highlight___cchkd:focus {
    transform: translateY(-1px);
    background-color: #1c706d;
}

@media screen and (max-width: 992px) {
    .Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select___MzBCL {
        width: 450px;
    }
    .Scripts-Components-Login-Login-login-form-___login-type-select__login-form__button___C2ovj{
        margin-top: 20px;
    }
}

@media screen and (max-width: 440px) {
    .Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select___MzBCL {
        width: 350px;
    }
    .Scripts-Components-Login-Login-login-form-___login-type-select__login-type-select__role___WcxmB{
        width: 280px;
    }
}
.Scripts-Components-Login-Login-login-form-___login-form__main-container___LOhcn {
    width: 100%;
    height: 100%;
    background: url(/js/../images/9134864c85d145517e48.png) center;
    background-size: cover;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form___4IRB1 {
    background-color: white;
    margin: auto;
    position: relative;
    text-align: center;
    top: 18%;
    width: 900px;
    height: min-content;
    border-radius: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form--sso___EiQM7 {
    top: 6%;
}

.Scripts-Components-Login-Login-login-form-___login-form__layout___XfSsG {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-template-areas:
        "logindisplay loginform";
    font-size: 14px;
    border-radius: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-form__section__login-display___MiAUd {
    grid-area: logindisplay;
    background: linear-gradient(to right,#afaaff, #f7ccff);
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-form__section__login-form___TNc21 {
    grid-area: loginform;
    padding: 30px;

}

.Scripts-Components-Login-Login-login-form-___login-form__login-msg___COozf {
    font-weight: 600;
    font-size: 18px;
    margin: 20px 0 0 0;
}

.Scripts-Components-Login-Login-login-form-___login-form__hand-icon___MiW-u{
    color: #ffb200;
    font-size: 24px;
    vertical-align: sub;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form__form___nV3Oz {
    margin: 70px 0 0 0;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form__title___nKSlR {
    display: block;
    font-size: 28px;
    margin: 80px 0 0 0;
    letter-spacing: 6px;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form__input-text___0gE7e {
    outline: 0;
    width: 300px;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .04);
    border: none;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form__button___MGr3- {
    outline: 0;
    background: #41A592;
    border-radius: 8px;
    border: none;
    width: 200px;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    display: block;
    margin: 15px auto 25px auto;
    font-family: Poppins;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.Scripts-Components-Login-Login-login-form-___login-form__login-form__button--highlight___0WHb\+:hover, .Scripts-Components-Login-Login-login-form-___login-form__login-form__button--highlight___0WHb\+:active, .Scripts-Components-Login-Login-login-form-___login-form__login-form__button--highlight___0WHb\+:focus {
    transform: translateY(-1px);
    background-color: #1c706d;
}

.Scripts-Components-Login-Login-login-form-___login-form__forgot-link-container___7MMJs {
    margin: 25px 0 0 0;
}

.Scripts-Components-Login-Login-login-form-___login-form__forgot-link___1jGrg {
    font-size: 15px;
    color: #797d85;
    text-decoration: none;
}

.Scripts-Components-Login-Login-login-form-___login-form__forgot-link___1jGrg:hover{
    color: #594b65;
}

.Scripts-Components-Login-Login-login-form-___login-form__learnful-image___tCb1p {
    max-width: 40%;
    max-height: 40%;
    margin-top: 10px;
}

.Scripts-Components-Login-Login-login-form-___login-form__learnful-image-no-text___M3Y9R{
    width: 270px;
    height: 270px;
}

.Scripts-Components-Login-Login-login-form-___login-form__error-msg___eW-ir {
    color: red;
    margin-top: 20px;
}

.Scripts-Components-Login-Login-login-form-___login-form__action-msg___KXBBk {
    font-weight: 500;
    font-size: 15px;
}

.Scripts-Components-Login-Login-login-form-___login-form__create___xHAgV {
    margin-top: 150px;
}

.Scripts-Components-Login-Login-login-form-___login-form__create-msg___UUB77 {
    font-size: 14px;
    color: #797d85;
}

.Scripts-Components-Login-Login-login-form-___login-form__create-link___k-jPk {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: dodgerblue;
}

    .Scripts-Components-Login-Login-login-form-___login-form__create-link___k-jPk:hover {
        text-decoration: underline;
    }

@media screen and (max-width: 992px){
    .Scripts-Components-Login-Login-login-form-___login-form__login-form___4IRB1{
        width: 450px;
    }
    .Scripts-Components-Login-Login-login-form-___login-form__layout___XfSsG {
        grid-template-columns: 100%;
        grid-template-areas:
            "loginform";
    }
    .Scripts-Components-Login-Login-login-form-___login-form__section__login-display___MiAUd{
        display: none;
    }
    .Scripts-Components-Login-Login-login-form-___login-form__login-container___4gfbo{
        width: 100%;
    }
    .Scripts-Components-Login-Login-login-form-___login-form__main-container___LOhcn{
        height: 100%;
    }
}

@media screen and (max-width: 440px) {
    .Scripts-Components-Login-Login-login-form-___login-form__login-container___4gfbo {
        width: 100%;
    }
    .Scripts-Components-Login-Login-login-form-___login-form__login-form___4IRB1 {
        max-width: 350px;
    }
}
html {
    height: 100%;
    min-height: 100%;
    /* Uncomment if we want for text to be unselectable */
    /*-webkit-user-select: none; /* Safari */
    /*-moz-user-select: none; /* Firefox */
    /*-ms-user-select: none; /* IE10+/Edge */
    /*user-select: none;*/

    font-family: "Poppins";
}

body {
    margin: 0 !important;
    height: 100%;
    min-height: 100%;
    background-color: #594b65;
    font-family: "Poppins" !important;
}
