.form_wrap {
    display: flex;
    align-items: start;
    gap: 160px;
}
.user_thumb_input {
    width: 180px;
    flex-shrink: 0;
}
.user_thumb_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-line);
    overflow: hidden;
    position: relative;
}
.user_thumb_input_btn {
    margin-top: 10px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--gray-500);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--ft14);
    font-weight: var(--semi-bold);
    color: var(--white);
    cursor: pointer;
}
.img_remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    /* display: flex; */
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    display: none;
}
.img_remove::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-color: var(--gray-400);
    mask: url(/images/icon/close.svg) no-repeat center/contain;
    -webkit-mask: url(/images/icon/close.svg) no-repeat center/contain;
}

.user_thumb_img.has-image .img_remove {
    display: flex;
}

.form_box {
    display: flex;
}
.form_label {
    width: 140px;
    height: 50px;
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.input_box {
    width: 400px;
}
.input_error {
    margin-top: 0;
}

/*-- id_box --*/
.id_box {
    padding: 0 20px;
    justify-content: start;
    gap: 10px;
}
.id_sns {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #03C75A;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.id_sns img {
    width: 10px;
    height: 10px;
}
.id_box p {
    font-size: var(--ft16);
    font-weight: var(--medium);
}

/*- block_user_btn --*/
.block_user_btn {
    padding: 0 20px;
    cursor: pointer;
}
.block_user_btn::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--gray-400);
    mask: url(/images/icon/right.svg) no-repeat center / contain;
    -webkit-mask: url(/images/icon/right.svg) no-repeat center / contain;
}
.block_user_btn p {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-500);
}

/*-- withdraw --*/
.withdraw {
    margin-top: 30px;
    display: flex;
    justify-content: end;
}
.withdraw div {
    font-size: var(--ft14);
    font-weight: var(--medium);
    color: var(--gray-400);
    text-align: right;
    cursor: pointer;
}

.popup_btn_wrap {
    position: relative;
    z-index: 1;
}
.popup_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 1400px) {
    .form_wrap {
        gap: 70px;
    }
    .form_box_r {
        width: 100%;
    }
    .input_box {
        width: 100%;
    }
}

@media all and (max-width: 1200px) {
    .form_wrap {
        flex-direction: column;
        gap: 40px;
    }
    .form_l {
        margin: 0 auto;
    }
    .form_list {
        width: 100%;
    }
}
@media all and (max-width: 768px) {
    .user_thumb_input {
        width: 140px;
    }
    .form_box {
        flex-direction: column;
    }
    .form_label {
        height: auto;
        margin-bottom: 10px;
    }
    .withdraw {
        margin-top: 16px;
    }
}