.login-page {
    --login-navy: #153247;
    --login-blue: #087fc1;
    --login-blue-dark: #075f91;
    --login-border: #d8e1e8;
    --login-muted: #5f6d79;
    --login-soft: #eef4f7;
    --login-white: #ffffff;
    padding-bottom: 72px;
    padding-top: 44px;
}

.login-page .login-form-panel,
.login-page .login-account-guide,
.login-page .login-register-card,
.login-page .login-banner,
.login-page .login-control,
.login-page .login-submit,
.login-page .login-password-toggle,
.login-page .login-form-status,
.login-page .login-unavailable {
    border-radius: 0 !important;
}


.login-content-row {
    align-items: flex-start;
    row-gap: 24px;
}

.login-form-panel,
.login-account-guide,
.login-register-card,
.login-banner {
    background: var(--login-white);
    border: 1px solid var(--login-border);
    box-shadow: 0 10px 28px rgba(21, 47, 66, 0.07);
}

.login-form-panel {
    padding: 36px 38px 38px;
}

.login-section-heading {
    border-bottom: 1px solid var(--login-border);
    margin-bottom: 28px;
    padding-bottom: 22px;
}

.login-section-label {
    color: var(--login-blue-dark);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.login-section-heading h2,
.login-account-guide h2,
.login-register-card h2 {
    color: var(--information-ink);
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.login-section-heading p,
.login-register-card p {
    margin-bottom: 0;
}

.login-form {
    margin: 0;
    position: relative;
}

.login-protection-field {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

.login-field {
    margin-bottom: 22px;
}

.login-field > label {
    color: var(--information-ink);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-control {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #b9c8d2;
    display: flex;
    min-height: 54px;
    position: relative;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.login-control:focus-within {
    border-color: var(--login-blue);
    box-shadow: 0 0 0 3px rgba(8, 127, 193, 0.13);
}

.login-control > i {
    align-items: center;
    color: var(--login-blue-dark);
    display: inline-flex;
    flex: 0 0 50px;
    font-size: 17px;
    justify-content: center;
    pointer-events: none;
}

.login-control input {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--information-ink);
    flex: 1 1 auto;
    font-size: 15px;
    height: 52px;
    line-height: 1.4;
    min-width: 0;
    outline: 0 !important;
    padding: 0 16px 0 0;
    width: 100%;
}

.login-control--password input {
    padding-right: 78px;
}

.login-control input::placeholder {
    color: #82909b;
    opacity: 1;
}

.login-control input.login-field-error {
    color: #8f2430;
}

.login-control--error {
    border-color: #bd3544;
    box-shadow: 0 0 0 3px rgba(189, 53, 68, 0.09);
}

.login-password-toggle {
    align-items: center;
    background: var(--login-soft);
    border: 0;
    border-left: 1px solid var(--login-border);
    color: var(--login-blue-dark);
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    height: 52px;
    justify-content: center;
    min-width: 68px;
    padding: 0 14px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
}

.login-password-toggle:hover {
    background: #e2edf3;
    color: var(--login-blue);
}

.login-password-toggle:focus-visible,
.login-control input:focus-visible {
    outline: 0;
}

.login-field-message {
    color: #a92332;
    display: block;
    font-size: 12px;
    line-height: 1.4;
    min-height: 17px;
    padding-top: 5px;
}

.login-form-actions {
    align-items: center;
    border-top: 1px solid var(--login-border);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 5px;
    padding-top: 24px;
}

.login-forgot-link {
    font-size: 14px;
    font-weight: 600;
}

.login-submit {
    align-items: center;
    background: var(--login-blue-dark);
    border: 1px solid var(--login-blue-dark);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 12px;
    justify-content: center;
    letter-spacing: 0.04em;
    min-height: 48px;
    min-width: 142px;
    padding: 12px 20px;
    text-transform: uppercase;
    transition: background-color 160ms ease, border-color 160ms ease;
}

.login-submit:hover {
    background: var(--login-blue);
    border-color: var(--login-blue);
}

.login-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.login-form-status {
    border: 1px solid transparent;
    margin-bottom: 22px;
    padding: 14px 16px;
}

.login-form-status[hidden],
.login-form-status:empty {
    display: none;
}

.login-form-status--error {
    background: #fff2f3;
    border-color: #e6b5bb;
    color: #8f2430;
}

.login-form-status--success {
    background: #edf8f1;
    border-color: #a9d4b7;
    color: #27683c;
}

.login-form-status p {
    color: inherit;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.login-form-status p + p {
    margin-top: 5px;
}

.login-unavailable {
    background: #eef6fa;
    border: 1px solid #b9dceb;
    color: #31596f;
    font-size: 14px;
    line-height: 1.65;
    margin-top: 20px;
    padding: 18px 20px;
}

.login-sidebar {
    display: grid;
    gap: 24px;
}

.login-account-guide {
    border-top: 4px solid var(--login-blue);
    padding: 30px 30px 26px;
}

.login-account-guide h2 {
    margin-bottom: 20px;
}

.login-account-guide ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.login-account-guide li {
    align-items: flex-start;
    border-top: 1px solid var(--login-border);
    display: flex;
    gap: 14px;
    padding: 15px 0;
}

.login-account-guide li:last-child {
    padding-bottom: 0;
}

.login-account-guide li > i {
    color: var(--login-blue-dark);
    flex: 0 0 20px;
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
}

.login-account-guide li > span {
    color: var(--information-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.login-register-card {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    padding: 26px 28px;
}

.login-register-card > i {
    align-items: center;
    background: var(--login-navy);
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 50px;
    font-size: 19px;
    height: 50px;
    justify-content: center;
}

.login-register-card h2 {
    font-size: 19px;
    margin-bottom: 5px;
}

.login-register-card p {
    font-size: 13px;
    line-height: 1.6;
}

.login-register-card a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-top: 9px;
    text-transform: uppercase;
}

.login-banner {
    box-shadow: none;
    overflow: hidden;
}

.login-banner:empty {
    display: none;
}

.login-banner > :last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 991.98px) {
    .login-page {
        padding-bottom: 56px;
        padding-top: 34px;
    }

}

@media (max-width: 767.98px) {
    .login-page {
        padding-bottom: 44px;
        padding-top: 26px;
    }


    .login-form-panel {
        padding: 28px 24px 30px;
    }

    .login-account-guide,
    .login-register-card {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 575.98px) {

    .login-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .login-submit {
        width: 100%;
    }

    .login-forgot-link {
        text-align: center;
    }

    .login-register-card {
        display: block;
    }

    .login-register-card > i {
        margin-bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-control,
    .login-submit {
        transition: none;
    }

    .login-page * {
        scroll-behavior: auto !important;
    }
}

@media print {
    .login-page {
        background: #ffffff;
        padding: 0;
    }

    .login-form-panel,
    .login-sidebar {
        box-shadow: none;
    }
}
