<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');

body {
    margin:0;
    padding:0;
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #181D27;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, h7, p {
    margin:0;
    padding:0;
}

/* Auth */
.auth-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.auth-screen--full-vh {
    grid-template-columns: 1fr;
}

.auth-screen__left {
    display: flex;
    flex-direction: column;
}

.auth-screen-container__header {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding-bottom: 8px;
}

.auth-screen-left__header {
    height:64px;
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.auth-screen-left__main {
    flex-grow: 1;
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.auth-screen__left_footer {
    margin-top: auto;
    display: flex;
    font-weight: 400;
    font-size: 14px;
    color: #535862;
    display: flex;
    align-items: center;
    padding: 24px;
}

.auth-screen-lf__right {
    margin-left: auto;
}

.auth-screen-lf__right_link {
    text-decoration: none;
    color: #535862;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.auth-screen-lf__right_link:hover {
    text-decoration: underline;
}

.auth-screen__right {
    background-color: #181D27;
}

.auth-screen-container {
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 380px;
    margin: 0 auto;
    row-gap: 16px;
}

.auth-screen-container__heading {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    padding: 0;
    margin: 0;
}

.auth-screen-container__heading_description {
    color: #535862;
    line-height: 24px;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.auth-form {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.auth-form__controls {
    padding-top: 8px;
}

/* Form control */
.form-control {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.form-control__label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #414651;
}

.form-control__input-wrapper {
    position: relative;
    width: 100%;
}

.form-control__input {
    display: block;
    width: 100%;
    border: solid 1px #D5D7DA;
    border-radius: 8px;
    padding: 12px 14px 10px 14px;
    box-sizing: border-box;
}

.form-control__input:focus {
    border-color: #181D27;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05), 0px 0px 0px 4px #ECECEC;
    outline: none;
}

.form-control__input::placeholder {
    font-size: 16px;
    color: #717680;
    margin: 0;
    padding: 0;
    line-height: 24px;
}

.form-control__icon,
.form-control__icon{
    position: absolute;
    right: 8px;
    top: 12px;
    display: none;
}

.form-control__icon-toggle-password {
    top: 8px;
    cursor: pointer;
}

.form-control__message {
    display: none;
}

.form-control--error .auth-form-checkbox__checkbox {
    border-color: #FDA29B;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    outline: 2px solid #FDA29B;
}

.form-control--error .form-control__input,
.form-control--error .form-control__input:focus {
    border-color: #FDA29B;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    outline:none;
}

.form-control--error .form-control__input:focus {
    outline: 2px solid #FDA29B;
}

.form-control--error .form-control__message {
    display: block;
    color: #F04438;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.form-control--error .form-control__icon-info-error {
    display: block;
}

.form-control__validation-result {
    margin-top: 8px;
}

.form-control__validation-result ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
}

.form-control__validation-result li{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.form-control__validation-result li.--valid{
    color: #027A48;
}

.form-control__validation-result li.--invalid{
    color: #F04438;
}

/* options */
.auth-form__options {
    display: flex;
    padding: 8px 0;
}

.auth-form-checkbox {
    display: flex;
    align-items: center;
    vertical-align: middle;
    align-items: center;
    column-gap: 4px;
}

.auth-form-checkbox__label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #414651;
}

.auth-form__options-secondary {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535862;
    text-align: center;
    padding-top: 8px;
}

/* Auth Main Message Box */
.auth-main__message-box {
    display: none;
    padding: 8px;
    color: #fff;
    margin-bottom: 8px;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.auth-main__message-box a{
    color: #fff;
    text-decoration: underline;
}

.auth-main__message-box a:hover{
    text-decoration: none;
}

.auth-main__message-box p {
    padding: 8px 0;
}

.auth-main__message-box--error {
    background-color: rgba(204, 0, 0, 0.8);
}

.auth-main__message-box--success {
    background-color: rgba(0, 128, 0, 0.8);
}

.auth-main__message-box-logout-inactivity {
    background: linear-gradient(90deg, #ff5858 0%, #f09819 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(204, 0, 0, 0.15);
    letter-spacing: 0.5px;
    animation: shake 0.4s;
    display: block;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

/* Auth Main Action */
.auth-main-action {
    padding-top: 4px;
}

.auth-main-action__button,
.auth-main-action__button-verification {
    border-radius: 8px;
    padding: 0 14px;
    height: 44px;
    text-align: center;
    background-color: #181D27;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    width: 100%;
    cursor: pointer;
}

/* Login form */
.login-form-forgot-password {
    margin-left: auto;
}

.auth-form-option__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
    text-decoration: underline;
}

.auth-form-option__link:hover {
    text-decoration: none;
}

/* Auth Scren Success */
.auth-screen__success .auth-screen-container{
    max-width: 400px;
}

.auth-screen__success .auth-screen-container__header{
    text-align: center;
}


/* Verify */
.auth-form-send-recovery {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.auth-main-action__resend {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535862;
    text-align: center;
}

.auth-main-action__resend--ready {
    color: #027A48;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
}

.auth-main-action__resend--ready:hover {
    text-decoration: none;
}
</pre></body></html>