/** 页面框架 上中下 */
.login-page {

    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(
            180deg,
            #33485d 0%,
            #2f4051 35%,
            #273746 100%
    );

    .login-page__top {
        padding: 10px;

        .logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            gap: 5px;

            .logo__img {
                height: 32px;
                width: 32px;
            }

            .logo__label {
                font-size: 24px;
                font-weight: 800;

                background: linear-gradient(
                        90deg,
                        #5bb7f0 0%,
                        #8fd3ff 50%,
                        #dbefff 100%
                );
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
            }
        }
    }

    .login-page__body {
        flex: 1;
        display: flex;
        align-items: center;
        /** 左边部分 **/

        .page-left {
            height: 100%;
            flex: 1;
            display: flex;
            opacity: 1;
            flex-direction: column;
            align-items: start;
            justify-content: center;

            .ad-area {
                width: 100%;
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;

                .ad {
                    height: 400px;
                    width: 400px;
                    margin-top: -20px;
                    display: block;
                    background-repeat: no-repeat;
                    background-position: center center;
                }

                .ad-text {
                    color: #fff;
                    font-weight: bold;
                    font-size: 2em;
                }

            }
        }


        /** 右边部分 **/

        .page-right {
            flex: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            align-items: center;
            opacity: 1;
            padding:10px;
            box-sizing: border-box;

            .form-area {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: center;
                position: relative;

                box-sizing: border-box;
                background: rgba(255, 255, 255, 0.3);
                border-radius: 8px;
                overflow: hidden;

                .form-area__body {
                    flex: 1;

                }

                .form-area__bottom {
                    border-top: 1px solid #f2f2f2;
                    background: white;

                }
            }
        }

    }

    .login-page__bottom {
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;

    }
}







