.choose_cont {
    padding: 100px 0;
}

.choose_cont .title_box {
    text-align: center;
}

.choose_cont .title_box strong {
    font-weight: 700;
    font-size: 24px;
}

.choose_cont .title_box .sub {
    margin-top: 8px;
    font-weight: 500;
    color: #5E5E5E;
    font-size: 16px;
}

.choose_cont .main_title {
    margin-bottom: 50px;
}

.choose_cont .main_title strong {
    font-size: 26px;
}

.choose_cont .main_title sub {
    font-size: 18px;
}

.choose_sect {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.choose_sect .login_container {
    width: calc((100% - 32px)/2);
    border: 1px solid #E1E1E1;
    border-radius: 6px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.choose_sect .choose_img {
    max-width: 160px;
    aspect-ratio: 1/1;
    display: flex;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);

}

.choose_sect .btn_default.full {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 0;
}

@media screen and (max-width:1023px) {
    .choose_sect {
        gap: 20px;
    }

    .choose_sect .login_container {
        width: 100%;
        border: 1px solid #EBEBEB;
        border-radius: 6px;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
        padding: 32px 24px;
        gap: 24px;
    }
}

@media screen and (max-width:767px) {
    .choose_cont {
        padding: 50px 0;
    }

    .choose_cont .title_box strong {
        font-size: 18px;
    }

    .choose_cont .title_box .sub {
        margin-top: 6px;
        font-size: 13px;
    }

    .choose_cont .main_title {
        margin-bottom: 32px;
    }

    .choose_cont .main_title strong {
        font-size: 20px;
    }

    .choose_cont .main_title sub {
        font-size: 14px;
    }

    .choose_sect .choose_img {
        max-width: 110px;
    }

    .choose_sect .btn_default.full {
        padding: 13px 0;
    }
}