/* Base (Desktop ≥ 1025px) */
.lstv-login-container {
    background-image: linear-gradient(to right bottom, #627d4d, #4f693b, #3c552a, #2a4219, #193007);
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    color: #627D4D33;
    overflow-y: auto; /* enables scroll if contents overflow */
    padding: 1rem 0;   /* prevents content sticking to edges */
    box-sizing: border-box;
}

.lstv-login-card {
    width: calc(100vw - 20rem);
    height: calc(100vh - 10rem);
    margin: auto;
    background: rgba(73, 25, 25, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 10px;
}

.lstv-login-card, .authentication-bg, .authentication-bg-container {
    height: auto;
}

.lstv-banner {
    position: relative;
    background-image: linear-gradient(to left top, #152c03, #1e350f, #283e18, #324722, #3c512b);
    min-height: 350px;
    display: flex;
    overflow: hidden;
}

.lstv-banner-hero {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.lstv-banner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 700px;
    height: 700px;
    background: transparent;
    border: 200px solid #fff2;
    border-radius: 50%;
    border-bottom-right-radius: 100%;
    z-index: 1;
    pointer-events: none;
    transform: rotate(180deg) translate(-35%, -35%);
    box-sizing: border-box;
}

.lstv-promo-text {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(3.5px);
    -webkit-backdrop-filter: blur(3.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.lstv-promo-icon {
    font-size: clamp(2rem, 5vw, 4rem);
}

.lstv-font-color {
    color: #fff !important;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

.lstv {
    position: absolute; 
    bottom: -5px; 
    left: 15px;
}

.lstv .build {
    font-size: 8pt;
    margin-top: -5px;
}

.lstv a {
    text-decoration: none; 
    color: inherit; 
    cursor: pointer; 
    z-index: 999;
}

@media (max-height: 860px) {
    #icons-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }

    .icon-card{
        width: 100% !important;
        margin: 0 auto !important;
    }

    .lstv-promo-text{
        margin-top: 1rem !important;
    }
}

@media (max-width: 1024px) {
    /* Make the container column-based */
    .lstv-login-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto !important;
        padding: 1rem;
    }

    /* Login Card - full width */
    .lstv-login-card, .authentication-bg, .authentication-bg-container {
        width: 100% !important;
        max-width: 600px !important;
        height: auto;
        margin-bottom: 1.5rem;
    }

    .icon-card{
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Banner (Info Div) - full width */
    .lstv-banner {
        width: 100%;
        flex-direction: column;
        min-height: auto;
        padding: 1rem;
    }

    /* Inside the banner: put text + icon in a row */
    .lstv-banner-hero {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
        padding-bottom: 3rem;
    }

    .lstv-promo-text {
        flex: 1 1 60%;
    }

    .lstv-promo-icon {
        flex: 1 1 30%;
        font-size: 40pt;
    }

    /* Hide decorative circle */
    .lstv-banner::after {
        display: none;
    }

    #icons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

