body {
    background: url('../image/login/register.png') no-repeat center fixed;
    background-size: cover;
    font-family: 'PingFang SC', 'Microsoft YaHei';
    min-width: 1200px;
}

.login-box
{
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 3.8rem 4rem 3.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-height: 490px;
    min-width: 460px;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-box-wrapper
{
    width: 50%;
    height: 100%;
    margin-left: 50%;
    position: relative;
}

.logo-container
{
    position: absolute;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    height: 50px;
    z-index: 1;
    top: 40px;
    left: 10px;
}

.logo
{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
}

.logo-text
{
    margin-left: 6px;
    font-size: 36px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    height: 40px;
}

.welcome-section
{
    margin: 20px 0;
    padding: 0 16px;
}

.welcome-text
{
    font-weight: 600;
    color: rgba(22, 24, 26, 0.9);
    display: flex;
    align-items: center;
    height: 40px;
}

.login-section
{
    margin-top: 10px;
}

    .login-section .j-form-item__error
    {
        font-size: 11px;
        padding: 8px 25px;
    }

    .login-section .j-checkbox
    {
        padding-bottom: 0px;
    }

.multiLanguage-container
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.multiLanguage-logo
{
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    color: rgba(22, 24, 26, 0.7);
}

.j-popover.j-popper:has(.lan-item)
{
    padding-left: 0;
    padding-right: 0;
    min-width: unset;
}

.lan-header
{
    display: flex;
    align-items: center;
    cursor: pointer
}

    .lan-header .icon-arrow-down.j-icon
    {
        margin-left: 6px;
        font-size: 10px;
        font-weight: 600
    }

    .lan-header.show-lan .icon-arrow-down.j-icon
    {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .lan-header.hide-lan .icon-arrow-down.j-icon
    {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

.lan-item
{
    padding: 0 16px;
    cursor: pointer;
    line-height: 2;
    font-weight: bold;
}

    .lan-item:hover
    {
        color: #0094ff;
        background: #e6f4ff;
    }

    .lan-item.lanDefault
    {
        background: #ecf5ff;
        color: #0094ff;
    }

.footer-bar
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    text-align: center;
    z-index: -1;
}

.footer-text
{
    color: #1890ff;
    font-size: 12px;
    margin: 0;
}

.apply-text
{
    line-height: normal;
}

    .apply-text a
    {
        display: inline-block;
        color: #1890ff;
        text-decoration: none;
    }

        .apply-text a:hover
        {
            text-decoration: underline;
        }

@media screen and (max-width: 1200px)
{
    body
    {
        min-width: unset;
    }

    .logo-container
    {
        display: none;
    }

    .login-box-wrapper
    {
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 495px)
{
    #app
    {
        overflow: hidden;
    }

    .welcome-section
    {
        display: none;
    }

    .login-box
    {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 0;
        min-height: unset;
        min-width: unset;
        padding: 0;
    }

    .footer-bar
    {
        display: none;
    }
}
