/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.main {
    padding: 10px;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #FC2A2A 0%, #FFE9C8 100%);
}

.left {
    padding: 5% 5% 2% 5%;
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    min-width: 0;

    .content {
        margin-top: 5%;
        flex-direction: column;
        flex-grow: 1;
        display: flex;
        align-items: flex-start;
        justify-content: center;

        .header {
            align-items: center;
            display: flex;
            flex-direction: row;

            .logo {
                width: 84px;
                height: 84px;
            }

            .appName {
                font-weight: 700;
                margin-left: 50px;
                font-size: clamp(40px, 8vw, 100px);
                color: white;
                white-space: nowrap;
            }


        }

        .description {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.7);
            word-wrap: break-word;
        }

        .btn {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            font-size: clamp(20px, 4vw, 50px);
            color: black;
            width: min(463px, 100%);
            height: clamp(60px, 8vh, 110px);
            background: #FFFFFF;
            border-radius: 8px 8px 8px 8px;
        }
    }

    .footer {
        align-items: center;
        display: flex;
        flex-direction: row;

        .text_privacy {
            font-weight: 700;
            cursor: pointer;
            font-size: 30px;
            color: #080808;
        }

        .line {
            background: #080808;
            color: #080808;
            margin-left: 30px;
            margin-right: 30px;
            height: 25px;
            width: 3px;
        }

        .text_terms {
            font-weight: 700;
            cursor: pointer;
            font-size: 30px;
            color: #080808;
        }
    }
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 50%;
    min-width: 0;
    overflow: hidden;
}

.right img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




