.container {
    position: relative;
    width: 100%; /* 1280 */
    height: 825px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contentBox{
    width: 80%;
    max-width: 900px;
    /* min-height: 300px; */
    padding: 30px;
    border: 3px solid #EBEFF2;
    background-color: white;
}

.title{
    font-family: score9;
    font-size: 44px;
    color: #1B2547;
}

    @media (max-width:900px) {
        .title {
            font-family: score7;
            font-size: 34px;
        }
    }

.body {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 50px;
    margin: 50px 0;
}
@media (max-width:900px) {
    .body {
        flex-direction: column;
        gap: 20px;
    }
}

.imgWrapper {
    position: relative;
    width: 100%;
    height: 500px;
    
    border-radius: 15px;
    overflow: hidden;
}
.needLoginAuthImg {
    position: relative;
    top: -150px;
    width: 100%;
}


    @media (max-width:900px) {
        .needLoginAuthImg {
            position: relative;
            width: 100%;
            top: 0;
        }
    }


.textWrapper {
    position: relative;
    width: 100%;
    height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.textWrapper > p {
    margin: 10px 0;
    font-family: score4;
    font-size: 20px;
    line-height: 40px;
}

    @media (max-width:900px) {
        .textWrapper > p {
            position: relative;
            width: 100%;
            font-size: 18px;
            line-height: 30px;
        }
    }



.pointSpan {
    font-family: score7;
    font-size: 30px;
}

    @media (max-width:900px) {
        .pointSpan {
            font-family: score7;
            font-size: 24px;
        }
    }

.button {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}