body.login-page.pba-auth-page {
    min-height: 100vh;
    background: #071a33;
    overflow-x: hidden;
}

body.login-page.pba-auth-login {
    overflow: hidden;
}

body.login-page.pba-auth-register {
    overflow-y: auto;
}

.pba-login-page {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 4rem 2rem 1.5rem;
}

.pba-background,
.pba-slide,
.pba-background::after {
    position: fixed;
    inset: 0;
}

.pba-background {
    z-index: 0;
    overflow: hidden;
    background: #071a33;
}

.pba-slide {
    opacity: 0;
    background-position: center center;
    background-size: cover;
    transform: scale(1.03);
    transition: opacity 1200ms ease, transform 25000ms linear;
}

.pba-slide.active {
    opacity: 1;
    transform: scale(1);
}

.pba-background::after {
    content: "";
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 25, 57, .48) 0%, rgba(10, 70, 129, .30) 46%, rgba(7, 63, 128, .66) 78%, rgba(2, 29, 70, .78) 100%),
        rgba(22, 123, 190, .20);
    pointer-events: none;
}

.pba-place-label {
    position: fixed;
    left: 1.75rem;
    bottom: 1.5rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    max-width: calc(100vw - 3.5rem);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .42);
}

.pba-place-label i {
    color: #8ed8ff;
    font-size: 1.45rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .45));
}

.pba-hero-brand {
    position: fixed;
    left: 4rem;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.75rem;
    max-width: calc(100vw - 32rem);
    color: #fff;
    transform: translateY(-50%);
    text-shadow: 0 3px 16px rgba(0, 0, 0, .45);
}

.pba-hero-brand img {
    width: min(24vw, 300px);
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .35));
}

.pba-hero-title {
    max-width: 520px;
    margin: 0;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.pba-login-content {
    position: relative;
    z-index: 3;
}

.pba-login-content .login-box {
    margin-bottom: 0;
}

.pba-login-content .register-box {
    width: min(420px, calc(100vw - 2.5rem));
    margin-bottom: 0;
}

.pba-login-content .register-logo img {
    max-width: 85%;
    height: auto;
}

.pba-login-content .g-recaptcha {
    display: flex;
    justify-content: center;
}

@media (max-width: 767.98px) {
    body.login-page.pba-auth-login {
        overflow-y: auto;
    }

    .pba-login-page {
        justify-content: center;
        padding: 1.25rem;
    }

    .pba-login-content .login-box,
    .pba-login-content .register-box {
        margin-right: 0 !important;
    }

    .pba-place-label {
        left: 1rem;
        bottom: 1rem;
        font-size: .9rem;
    }

    .pba-hero-brand {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .pba-hero-brand {
        left: 2rem;
    }

    body.login-page.pba-auth-login .pba-hero-brand {
        max-width: calc(100vw - 26rem);
    }

    body.login-page.pba-auth-register .pba-hero-brand {
        max-width: calc(100vw - 28rem);
    }

    .pba-hero-brand img {
        width: 160px;
    }

    .pba-hero-title {
        font-size: 1.65rem;
    }
}
