.register-wrap {
    width: 100%;
    max-width: 750px;
    padding: 0 15px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
        min-height: 800px;
    h1{
        text-align: center;
        font-weight: 700;
    }
    h2{
        font-weight: 700;
    }
    .mb-80{
        margin-bottom: 80px;
    }
    .policy_item{
        textarea{
            min-height: 300px;
        }
    }
}
.register_step_bx {
    display: flex;
    width: 100%;
    padding: 0 30px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
     gap: 60px; 
    .register_step_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        position: relative;
    flex: 1; /* 동일한 크기 분배 */
    text-align: center;
        > span{
            color: var(--light-500, #C6CED2);
        }
        .step_num {
            display: flex;
            font-size: 1.25rem;
            width: 60px;
            height: 60px;
            justify-content: center;
            align-items: center;
            border-radius: 30px;
            color: var(--white);
            text-align: center;
            border: 1px solid var(--Foundation-light-light-300, #D9DEE1);
            background: var(--Foundation-light-light-300, #D9DEE1);
        }
    }
    .register_step_item.active > span, .register_step_item.passed > span{
        color: var(--text);
    }
    .register_step_item.passed .step_num{
border: 1px solid var(--blue-500);
background: var(--blue-500);
    }
    .register_step_item.active .step_num{
        border: 3px solid var(--blue-300, #90B1EE);
background: var(--primary-500, #185BD8);
box-shadow: 0 4px 10px 0 rgba(24, 91, 216, 0.20);
    }
    .register_step_item + .register_step_item::before{
        content: '';
    position: absolute;
    top: 30px;
    left: calc(-50% - 30px); 
    width: calc(100% + 60px); 
    border-bottom: 2px dotted var(--light-300);
    z-index: -1;
    }
    .register_step_item + .register_step_item.active::before, .register_step_item + .register_step_item.passed::before{
    border-bottom: 2px dotted var(--blue-500);
    }
    
}
.radio-card-group {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.radio-card {
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border, #D9D9D9);
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}
.radio-card:has(input[type="radio"]:checked){
border: 3px solid var(--blue-500, #598AE6);
padding: 18px;
background: var(--white, #FFF);

/* active_shadow */
box-shadow: 0 4px 10px 0 rgba(24, 91, 216, 0.20);
}

.radio-card input[type="radio"] {
    display: none;
}
.radio-card .content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.radio-card img {
    width: 200px;
    height: auto;
}

.radio-card h5 {
}

.radio-card p {
    margin: 0;
    color: var(--sub_text);
}


.radio-card input + .content::after {
    position: absolute;
    right: 10px;
    top: 10px;
    content: '';
    width: 40px;
    height: 40px;
    background-color: var(--light-100, #EDF0F1);
    border-radius: 20px;
    border: 1px solid var(--light-200, #E5E8EA);
}

.radio-card input[type="radio"]:checked + .content::after { 
    background-color: var(--primary-500);
    border: 1px solid var(--blue-500);
    background-image: url('/theme/bootstrap5-basic/img/white_check.svg');
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}

.all_check_bx{
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid var(--border, #D9D9D9);
}
.policy_cont{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    .policy_item{
        display: flex;
    flex-direction: column;
    gap: 10px;
    h6{
        padding: 0 20px;
        font-weight: 700;
    }
    textarea{
        border-radius: 10px;
border: 1px solid var(--border, #D9D9D9);
    }
    }
    
}

.card-btn-group{
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.card-btn {
    position: relative;
    display: inline-block;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border, #D9D9D9);
    text-align: center;
    cursor: pointer;
    width: 210px;
    transition: 0.3s;
}
.card-btn img {
    width: 120px;
    height: auto;
}

.card-btn:hover {
   border: 3px solid var(--blue-500, #598AE6);
/* active_shadow */
box-shadow: 0 4px 10px 0 rgba(24, 91, 216, 0.20);
}

.register-wrap hr {
    margin: 0;
    border-top: var(--bs-border-width) solid var(--border);
    opacity: 1;
}
.radio_bx{
    padding: 10px 0;
}

@media screen and (max-width: 767.98px) {
    .register_step_bx {
        gap:30px;
        padding: 0;
            & .register_step_item {
        .step_num {
            font-size: 1rem;
            width: 40px;
            height: 40px;
        }
    }
        .register_step_item + .register_step_item::before {
        top: 20px;
        width: calc(100% + 40px);
    }

    }
    .card-btn-group {
    gap: 10px; 
    flex-direction: column;
}
.card-btn {
    width: 100%;
    padding:12px;
}
.card-btn img {
    width: 80px;
}
.radio-card-group {
    gap: 10px;
    flex-direction:column;
}
.radio-card {
    padding: 12px;
}
.radio-card .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-left: 120px;
    height: 100%;
    justify-content: center;
    min-height: 100px;
}
.radio-card img {
    width: 100px;
            position: absolute;
        left: 12px;
        top: 12px;
}
}