.form_list {
    max-width: 400px;
    margin: 0 auto;
}

/*-- id_box --*/
.id_box {
    display: flex;
    align-items: center;
    gap: 8px;
}
.id_box img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.id_box p {
    font-size: var(--ft16);
    color: var(--gray-500);
}

/*-- toggle_list --*/
.toggle_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.toggle_box label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.toggle_box p {
    font-size: var(--ft16);
    color: var(--gray-500);
}
.toggle_box .toggle {
    width: 40px;
    height: 20px;
    border-radius: 10px;
    background-color: var(--gray-200);
    position: relative;
}
.toggle .toggle_cir {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--white);
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left .4s ease;
}
.toggle_box input:checked ~ label .toggle {
    background-color: var(--primary);
}
.toggle_box input:checked ~ label .toggle_cir {
    left: 24px;
}

.withdrawal {
    margin-top: 32px;
    display: flex;
    justify-content: end;
}
.submit {
    margin-top: 50px;
    width: 100%;
}