
.authbg-image {
    background: url("../../../standard/static/images/login/auth-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.authbg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    z-index: 0;
    mix-blend-mode: multiply;
    opacity: 0.75;
    pointer-events: none;
}
.lead {
    font-size: 1.3em !important;
    font-weight: 300;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 1;
}
.branding {
    position: relative;
    z-index: 2;
    color: white;
}
.login_title {
    font-size: 1.8rem;
    font-weight: bold;
}

.copy2 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2em;
    opacity: 0.8;
    text-align: center;
}

.copy {
    font-size: 1.0em;
    opacity: 0.8;
    text-align: center;
}


.login__footer {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.mobile_app_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.mobile_app_icon {
    width: 120px !important;
}
.login_logo {
    max-height: 100px;
    max-width: 200px;
    object-fit: contain;
}
