.login-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.login-page__form {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    min-height: 100vh;
}

.login-page__form-inner {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.login-page__card {
    width: 100%;
}

.login-page__visual {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #f5f6f8;
}

.login-page__slide {
    position: absolute;
    inset: 0;
    background-color: #f5f6f8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.login-page__slide--active {
    opacity: 1;
}

.login-page__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}
