.mainsignup1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.mainsignup1_inner {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px; /* 최대 너비 설정 */
    width: 100%; /* 모바일 대응을 위한 너비 100% */
    margin: 100px;
}

.mainsignup1_title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333; /* 텍스트 색상 추가 */
}

.step-indicator {
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: -0.03em;
    text-align: left;    
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.mainsignup1_title_number {
    background-color: #f0f0f0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px; 
    font-weight: 700;
    color: #333;
}

.mainsignup1_title_number.active {
    background-color: #5069FF;
    color: white;
}

.mainsignup1_text1 {
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.mainsignup1_title_text.active {
    color: #5069FF;
}

.mainsignup1_text1 label {
    margin-left: 10px;
}

.mainsignup1_text2 {
    font-size: 16px;
    color: #666;
}

.mainsignup1_term {
    width: 100%;
    max-width: 1100px;
    height: 300px;
    margin-top: 10px;
    border-radius: 22px;
    border: 1px solid #ddd;
    padding: 15px;
    overflow-y: auto;
    background-color: #fafafa;
}

/* .term-content {

} */

.term-content-text{
    font-family: 'Pretendard';
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: -0.03em;
    text-align: left;
    color: #333;
    margin-top: 15px;
    margin-right: 30px;
    margin-left: 30px;
    /* line-height: 1.5; */ 
}

.mainsignup1_btn {
    width: 100%;
    max-width: 1100px;
    height: 64px;
    margin-top: 40px;
    background-color: #5069FF;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.check-button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F4F4F4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.check-button.checked {
    background: #5069FF;
}

.check-button.checked::after {
    content: '✓';
    color: white;
    font-size: 16px;
}

.mainsignup1_btn {
    width: 100%;
    height: 64px;
    background-color: #777777;
    color: white;
    font-size: 20px;
    border: none;
    border-radius: 23px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mainsignup1_btn.active {
    background-color: #5069FF;
}

@media screen and (max-width: 767px) {
    .mainsignup1_inner{
        width: 100%;
        padding: 30px 3px;
    }
}