footer.site-footer {
    font-weight: 600;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

.auth-page-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: var(--layout);
}

.auth-card {
    width: 100%;
    max-width: 460px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 32px;
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.auth-right {
    position: relative;
    flex: 0 0 60%;
}

.auth-left {
    position: relative;
    flex: 0 0 40%;
    min-height: 100vh;
}

.auth-left .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.auth-right .illustration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--layout);
    z-index: 2;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.welcome-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    text-align: center;
}

.bg-pattern.dark,
.illustration.dark {
    display: none;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.hold-transition.auth-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.card {
    box-shadow: none;
}

.welcome-title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.auth-logo img {
    height: 56px;
    width: auto;
}

body.dark .bg-pattern:not(.dark),
body.dark .illustration:not(.dark) {
    display: none;
}

body.dark .bg-pattern.dark,
body.dark .illustration.dark {
    display: block;
}

@media (max-width: 992px) {
    .auth-right {
        display: none;
    }

    .auth-left {
        flex: 1 1 100%;
    }
}

@media (max-height: 650px) {
    .hold-transition.auth-page {
        align-items: flex-start;
        padding-top: 2rem;
    }
}