<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">input {
    background: none;
    outline: none;
    border: none;
}


.mask {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 20;
    inset: 0;
    background-color: var(--login_background);
    /* background-color: black; */
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;


    .login {
        width: 438px;
        /* height: 435px; */
        background: var(--login_main);
        box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.25);
        border-radius: 0px 0px 0px 0px;
        padding: 40px 60px;
        box-sizing: border-box;
        overflow: hidden;
        display: none;
    }

    .login_clone {
        width: 139px;
        height: 139px;
        background: rgba(153, 153, 153, 0.6);
        border-radius: 0px 0px 0px 0px;
        right: -70px;
        top: -70px;
        border-radius: 50%;

    }

    .login_clone_img {
        position: absolute;
        right: 85px;
        top: 85px;
    }

    .login_title {
        font-weight: 600;
        font-size: 24px;
        color: var(--login_color);
        margin-bottom: 1.875rem;
    }

    .login_form label {
        font-weight: 600;
        font-size: 16px;
        color: var(--login_color);
        width: 100%;
        margin-bottom: 12px;
    }

    .login_form_input input {
        border: none;
        width: 100%;
        height: 100%;
        font-weight: 400;
        font-size: 14px;
        color: #666666;
        background-color: #ffffff00;
        flex: 1;

    }


    .login_form_input {
        width: 100%;
        /* height: 40px; */
        border-radius: 8px 8px 8px 8px;
        border: 1px solid #048D36;
        padding: 8px 16px;
        box-sizing: border-box;
        /* margin-bottom: 16px; */
        display: flex;
        align-items: center;
    }

    .login_form_button {
        width: 100%;
        height: 41px;
        background: #048D36;
        border-radius: 8px 8px 8px 8px;
        border: none;
        color: #fff;
        font-weight: 400;
        font-size: 18px;
        color: #FFFFFF;
        margin-top: 8px;
    }

    .login_form_password_how {
        height: 20px;
    }

    .login_form_agreement {
        display: flex;
        align-items: center;

        margin-top: 10px;

        &amp;&gt;input {
            width: 24px;
            height: 24px;
        }

        &amp;&gt;p {
            margin-left: 6px;
            font-weight: 400;
            font-size: 14px;
            color: var(--login_color);
        }


    }

    .error-message {
        color: #dc3545;
        font-size: 12px;
        margin-top: 4px;
        min-height: 17px;
    }

    .login_form_text {
        margin-top: 10px;
        font-weight: 400;
        font-size: 12px;
        color: #666666;

        &amp;&gt;p:last-child {
            color: #008F33;
            margin-left: 4px;
        }
    }

    .login_p {
        font-weight: 500;
        font-size: 14px;
        color: #999999;

        &amp;&gt;span {
            color: var(--login_agreement);
        }
    }

    .logo_code {
        display: flex;
        justify-content: space-between;
        margin-top: 16px;
        margin-bottom: 24px;

    }

    .logo_code_item {
        width: 34px;
        height: 34px;
        border-radius: 4px 4px 4px 4px;
        border: 2px solid #999999;
        font-weight: 800;
        font-size: 16px;
        color: #048D36;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo_code_input {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .logo_code_active {
        border: 2px solid #048D36;
    }

    .login_form_link {
        width: 100%;
        display: block;
        text-align: center;
        font-weight: 400;
        font-size: 12px;
        color: #048D36;
        margin-top: 20px;
        margin-bottom: 10px;
    }

}


@media screen and (max-width: 1080px) {
    .mask {
        align-items: flex-end;

        .login {
            width: 100%;
        }
    }


    .login_clone {
        /* display: none; */
        border-radius: 24px 24px 0px 0px;
    }

}

@media screen and (min-width: 1080px) {}</pre></body></html>