*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

html,
:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Lato, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    line-height: inherit;
    font-family: Lato, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    height: 100vh;
    padding: 0;
    display: flex;
    background: linear-gradient(
            146deg,
            #f7f1e9 2.54%,
            #fff 48.16%,
            #f2f7f6 88.9%
    ) no-repeat fixed;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp,
pre {
    font-family: Lato, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button,
select {
    text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none;
}

:-moz-focusring {
    outline: auto;
}

:-moz-ui-invalid {
    box-shadow: none;
}

progress {
    vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type='search'] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}

fieldset {
    margin: 0;
    padding: 0;
}

legend {
    padding: 0;
}

ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

dialog {
    padding: 0;
}

textarea {
    resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
}

button,
[role='button'] {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    vertical-align: middle;
}

img,
video {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px #fff inset;
    -webkit-text-fill-color: #333;
    font-size: 1rem;
}

input:-webkit-autofill::first-line {
    font-size: 1rem;
}

/*this is for animation to enable submit button when a browser autocomplete input*/
input:not(:-webkit-autofill) {
    animation-name: onAutoFillCancel;
}
input:-webkit-autofill {
    animation-name: onAutoFillStart;
}
@keyframes onAutoFillStart {
  from {/**/}
  to {/**/}
}

@keyframes onAutoFillCancel {
  from {/**/}
  to {/**/}
}

.logo-wrapper {
    max-width: 144px;
}

input:-webkit-autofill ~ .input-text-field-label {
    color: rgb(107 114 128);
}

.form-wrapper > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem;
    margin-bottom: 0;
}

.text-field {
    position: relative;
    height: 2.75rem;
    width: 100%;
}

.text-field--error .input-text-field-label {
    color: rgba(211, 47, 47, 1) !important;
}

.text-field--error .input-text-field-label:after, .text-field--error .input-text-field {
    border-color: rgba(211, 47, 47, 1) !important;
}

.input-text-field {
    height: 100%;
    width: 100%;
    border-bottom-width: 1px;
    padding-top: 1rem;
    padding-bottom: 0.375rem;
    font-family: Lato, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    line-height: 1.25rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.input-text-field--password {
    padding-right: 24px;
}

.input-text-field::-moz-placeholder {
    opacity: 0;
}

.input-text-field::placeholder {
    opacity: 0;
}

.input-text-field:focus {
    border-color: rgb(107 114 128);
    outline-width: 0;
}

.input-text-field:focus::-moz-placeholder {
    opacity: 1;
}

.input-text-field:focus::placeholder {
    opacity: 1;
}

.input-text-field:disabled {
    background: transparent;
    border-bottom-style: dotted;
    border-color: rgba(0, 0, 0, 0.42);
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.input-text-field:disabled ~ .input-text-field-label {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
    border-bottom-style: dotted;
    border-color: rgba(0, 0, 0, 0.42);
}

.input-text-field:disabled ~ .input-text-field-label:after {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.input-text-field ~ .input-text-field-label:after {
    border-color: rgba(0, 0, 0, 0.87);
}

.input-text-field-label {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: -0.375rem;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: visible !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
    color: rgb(107 114 128);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.input-text-field-label::after {
    position: absolute;
    bottom: -0.375rem;
    display: block;
    width: 100%;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(0) scaleY(1);
    border-bottom-width: 2px;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    content: '';
    transition-duration: 300ms;
}

.input-text-field:-moz-placeholder-shown ~ .input-text-field-label {
    font-size: 1rem;
    line-height: 4.25;
}

.input-text-field:placeholder-shown ~ .input-text-field-label {
    font-size: 1rem;
    line-height: 4.25;
}

.input-text-field:focus ~ .input-text-field-label {
    font-size: 12px;
    line-height: 1.25;
    color: hsla(173, 96%, 33%, 1);
}

.input-text-field:focus ~ .input-text-field-label::after {
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
    content: '';
    border-color: hsla(173, 96%, 33%, 1);
}

.input-text-field-label:after {
    content: '';
}

.text-field-icon {
    position: absolute;
    top: 60%;
    right: 0;
    display: grid;
    height: 1.25rem;
    width: 1.25rem;
    cursor: pointer;
    transform: translate(0, -50%) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
    place-items: center;
}

.text-link {
    font-weight: 500;
    color: hsla(173, 96%, 33%, 1);
}

.text-link:hover {
    text-decoration-line: underline;
}

.button {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border-radius: 0.25rem;
    background-color: hsla(173, 96%, 33%, 1);
    padding: 0.75rem 1.5rem;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: rgb(255 255 255);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.button--primary {
    display: block;
    width: 100%;
    background-color: hsla(173, 96%, 33%, 1);
}

.button--primary:hover {
    background-color: rgb(2 115 102);
}

.button--primary:focus {
    opacity: 1;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
}

.button--primary:active {
    background-color: hsla(173, 96%, 33%, 1);
    opacity: 1;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
}

.button--primary:disabled {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.38);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
}

.button--secondary {
    border: 1px solid rgba(0, 0, 0, 0.87);
    background-color: transparent;
    border-radius: 4px;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    text-transform: uppercase;
}

.button--secondary:hover {
    opacity: .8;
}

.button--secondary:disabled {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.38);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
}

.card {
    border-radius: 0.25rem;
    background-color: rgb(255 255 255);
    box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.card-title {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.5rem;
    font-family: Poppins, Lato, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.card-content {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-content > .card-content {
    width: 100%;
    max-width: none;
}

.card-content--lg {
    max-width: 542px;
}

.alert {
    display: flex;
    width: 100%;
    border-radius: 0.25rem;
    padding: 6px 16px;
    max-width: 400px;
    gap: 4px;
}

.alert--danger {
    background-color: rgba(253, 237, 237, 1);
    color: rgba(95, 33, 32, 1);
}

.alert--warning {
    border: 1px solid transparent;
    color: rgba(102, 60, 0, 1);
    background-color: rgba(255, 244, 229, 1);
}

.alert-icon {
    margin-right: 12px;
    padding: 7px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 22px;
    opacity: 0.9;
}

.alert--danger .alert-icon svg {
    color: #8d2820;
}

.alert--warning .alert-icon svg {
    color: rgba(239, 108, 0, 1);
}

.alert-text {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main {
    width: 100%;
}

@media (min-width: 640px) {
    .main {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .main {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .main {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .main {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .main {
        max-width: 1536px;
    }
}

.main {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.main-content-center {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    gap: 40px;
}

@media (min-width: 768px) {
    .main-content-center {
        height: 100vh;
    }
}

.hidden {
    display: none !important;
}

.login-with-crs {
    display: flex;
    justify-content: center;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.forgot-password-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem !important;
}

.loader {
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    border-radius: 50%;
    color: #fff;
    animation: fill 1s ease-in infinite alternate;
}

.loader::before, .loader::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    left: 18px;
    top: 0;
    animation: fill 0.9s ease-in infinite alternate;
}

.loader::after {
    left: auto;
    right: 18px;
    animation-duration: 1.1s;
}

.loader.loader--logout {
    margin-left: 1.6rem;
    color: inherit;
}


@keyframes fill {
    0% {
        box-shadow: 0 0 0 2px inset
    }
    100% {
        box-shadow: 0 0 0 10px inset
    }
}

.language-wrapper {
    display: flex;
}

.language-wrapper svg {
    width: 24px;
    height: 24px;
}

.language-wrapper select {
    display: block;
    padding: 0;
    background-color: transparent;
    margin-left: 4px;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-container label {
    margin-inline-start: 0.5rem;
}

.checkbox-container input[type="checkbox"] {
    background-color: transparent;
    border-color: rgb(209 213 219);
    border-radius: 0.25rem;
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    background-origin: border-box;
    border-width: 2px;
    border-color: rgba(0, 0, 0, 0.6);
    color: #1976d2;
    display: inline-block;
    flex-shrink: 0;
    padding: 0;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
}

.checkbox-container input[type="checkbox"]:checked {
     background-image: url("data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0ndHJ1ZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyBmaWxsPSdub25lJyB2aWV3Qm94PScwIDAgMTYgMTInPjxwYXRoIHN0cm9rZT0nI2ZmZicgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBzdHJva2Utd2lkdGg9JzMnIGQ9J00xIDUuOTE3IDUuNzI0IDEwLjUgMTUgMS41Jy8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 0.55em 0.55em;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    background-color: currentColor;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 0.55em 0.55em;
    border-color: transparent;
}

.checkbox-container.verify-token {
    margin-top: 16px !important;
}

@media screen and (min-width: 768px) {
    .card-content {
        width: 320px;
    }
}

.password-validations {
    margin-top: 8px;
}

.password-validations li {
    display: flex;
    align-items: center;
    gap: 8px
}

.password-validations li svg {
    width: 1.2rem;
    height: 1.2rem;
}

.password-validations li .success {
    display: none;
}

.password-validations li.met .wrong {
    display: none;
}

.password-validations li.met .success {
    color: rgba(38, 166, 154, 1);
    display: inline-block;
}

.back-container {
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    padding: 5px 15px;
    border-radius: 4px;
}

.back-container:hover {
    opacity: 0.8;
}

.back-container svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.back-container span {
    text-transform: uppercase;
}

.text-center {
    text-align: center !important;
}

.text-secondary {
    color: rgba(0, 0, 0, 0.6) !important;
}
