#login-section {
    min-height: 100vh;
    height: auto;
    overflow: hidden;
}

#login-section .after-sales-card {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 340px;
    max-width: 340px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(54, 153, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(32, 35, 49, 0.72);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

#login-section .after-sales-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: #3699FF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

#login-section .after-sales-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #3699FF;
    box-shadow: 0 0 18px rgba(54, 153, 255, 0.95);
}

#login-section .after-sales-card p {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: 0.03em;
}

#login-section .after-sales-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#login-section .after-sales-card a:hover,
#login-section .after-sales-card a:focus {
    color: #fff;
    border-color: rgba(54, 153, 255, 0.68);
    background: rgba(54, 153, 255, 0.18);
    transform: translateY(-1px);
}

@media(max-width: 576px) {
    #login-section .login-form-holder {
        min-height: 100vh;
        height: auto;
        padding-bottom: 42px;
    }

    #login-section .login-logo {
        z-index: 2;
        opacity: 0.16;
        pointer-events: none;
    }

    #login-section .after-sales-card {
        min-width: unset;
        max-width: none;
        margin-bottom: 18px;
    }
}
