/* Original sign-in layout and visual treatment, using the current site fonts. */
.km_auth_page {
    min-height: 100vh;
    color: #2f3742;
    line-height: 1.65;
}
.km_auth_form_side { min-height: 100vh; }
.km_auth_visual_side {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}
#km_auth_canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.km_auth_visual_overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 18% 22%, rgba(34, 85, 255, .1), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .88));
    pointer-events: none;
}
.km_auth_visual_content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding: 4rem;
}
.km_auth_page .km_logo_header {
    font-size: 2.05rem;
    font-weight: 400;
    letter-spacing: -.035em;
}
.km_auth_visual_logo {
    font-family: 'kmserif', serif;
    font-size: 2rem;
    color: #fff;
}
.km_auth_title {
    font-family: 'kmserif', serif;
    font-size: clamp(2.6rem, 3vw, 3rem);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.12;
}
.km_auth_hero_title {
    font-family: 'kmserif', serif;
    font-size: clamp(3.6rem, 4vw, 3.8rem);
    font-weight: 400;
}
.km_auth_text {
    font-family: 'kmfont', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: normal;
}
.km_auth_page .btn-primary,
.km_auth_page .btn-primary:not(.btn-active) {
    color: #fff !important;
    background: #2f3742 !important;
    border-color: #2f3742 !important;
    border-radius: .475rem;
    font-weight: 700;
    box-shadow: none;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.km_auth_page .btn-primary:hover,
.km_auth_page .btn-primary:focus,
.km_auth_page .btn-primary:active {
    color: #fff !important;
    background: #20242a !important;
    border-color: #20242a !important;
    transform: translateY(-2px);
    box-shadow: 0 0 0 .25rem rgba(34, 85, 255, .2) !important;
}
.km_auth_page .link-primary,
.km_auth_page .c_1,
.km_auth_page a:not(.btn) { color: #2f3742 !important; }
.km_auth_page a:not(.btn):hover { color: #20242a !important; }
.km_auth_page .form-check-input:checked {
    background-color: #2f3742 !important;
    border-color: #2f3742 !important;
}
.km_auth_page .form-control:focus,
.km_auth_page .form-check-input:focus {
    border-color: #68717d !important;
    box-shadow: 0 0 0 .2rem rgba(47, 55, 66, .14) !important;
}
@media (prefers-reduced-motion: reduce) {
    .km_auth_page .btn-primary { transition: none; }
}
