#wrap {
    width: 1905px;
    height: 5058px;
    background: url('../img/mainbg.png') no-repeat 0 0 / contain;
    margin: 0 auto;
    position: relative;
}
.form_wrap {
    width: 805px;
    position: absolute;
    top: 4326px;
    left: 50%;
    transform: translateX(-50%);
}
.form_wrap ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 10px;
}
.form_wrap ul li {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form_wrap ul li .title_label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #102742;
}

.form_wrap ul li input[type='text'] {
    border: 1px solid #ddd;
    outline: none;
    padding: 18px;
    width: 100%;
    font-size: 20px;
    border-radius: 10px;
    font-size: 16px;
}
.form_wrap ul li textarea {
    border: 1px solid #ddd;
    outline: 0;
    font-size: 16px;
    height: 50px;
    height: 157px;
    padding: 18px;
    border-radius: 10px;
    resize: none;
}

.form_wrap ul li .type_wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form_wrap ul li .type_wrap input[type='radio'] {
    display: none;
}

.form_wrap ul li .type_wrap label {
    color: #102742;
    font-weight: 600;
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    cursor: pointer;
}

.form_wrap ul li .type_wrap label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #102742;
    background-color: #fff;
    box-sizing: border-box;
}

.form_wrap ul li .type_wrap input[type='radio']:checked + label::before {
    background-color: #102742;
    box-shadow: inset 0 0 0 3px #fff;
}

.form_wrap ul li input[type='text']::placeholder,
.form_wrap ul li textarea::placeholder {
    color: #999;
    font-size: 16px;
}

.form_wrap .privacy_wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}
.form_wrap .privacy_wrap input[type='checkbox'] {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}
.form_wrap .privacy_wrap label {
    font-weight: 700;
    color: #102742;
}
.form_wrap .privacy_wrap button {
    background: #102742;
    color: #fff;
    padding: 4px 10px;
    font-size: 16px;
    border-radius: 5px;
    margin-left: 5px;
}
.btn_submit {
    background: #0b45d6;
    color: #fff;
    font-weight: 700;
    width: 310px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 20px 0;
    font-size: 22px;
    letter-spacing: -1px;
    border-radius: 5px;
}
