.title_div {
    display: none;
}
.rental_section {
    background-color: #f9f9f9;
}
.btm_wrap {
    background: #fff;
}
.rental_bg {
    background-image: url('/img/rental_bg.png');
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.rental_div {
    position: relative;
    width: 610px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 16px;
}
.rental_div form {
    padding: 0 40px;
}
.rental_top {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    border-radius: 8px;
}
.rental_title {
    font-size: 24px;
    margin-bottom: 15px;
}
.rental_desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}
.rental_form_div {
    margin: 20px 0;
}
.rental_form_title {
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
}
.rental_form_desc {
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-bottom: 10px;
}
.rental_form_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rental_form_item, .rental_form_double {
    margin-bottom: 15px;
}
.rental_form_label {
    display: block;
    width: 20%;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}
.rental_form_input, .rental_form_select, .rental_form_textarea {
    width: 100%;
    padding: 10px;
    border: none;
    background: #F7F8FB;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.2;
} 
.rental_form_textarea {
    height: 150px;
    resize: vertical;
}
.rental_form_double {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.rental_form_select_div {
    display: flex;
    gap: 10px;
    width: 100%;
}
.rental_form_select_div select {
    background: none;
}
.rental_form_check {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.rental_form_check input[type="checkbox"] {
    display: none;
}
.rental_form_check input[type="checkbox"] + span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 2px solid #01CB5C;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
    cursor: pointer;
    position: relative;
}
.rental_form_check input[type="checkbox"]:checked + span {
    background-color: #01CB5C;
    border-color: #019d45;
}
.rental_form_check input[type="checkbox"]:checked + span::after {
    content: '✔';
    color: #fff;
    position: absolute;
    top: 0;
    left: 4px;
    font-size: 16px;
}
.rental_form_check_label {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rental_form_check_btn {
    background: none;
    border: none;
    color: #01CB5C;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
    margin-left: 5px;
}
.rental_agree_desc {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: #555;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    max-height: 200px;
    line-height: 1.5;
    overflow-y: auto;
}
.rental_form_button_wrap {
    margin-top: 20px;
    text-align: center;
}
.rental_form_button {
    background-color: #01CB5C;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}
.rental_form_button:hover {
    background-color: #019d45;
}
.red {
    color: #444;
}
@media (max-width: 768px) {
    .rental_div {
        width: 100%;
        margin-top: -30px;
        margin-bottom: 300px;
    }
    .rental_top {
        padding-bottom: 20px;
    }
    .rental_title {
        font-size: 20px;
    }
    .rental_form_label {
        width: 25%;
    }
    .rental_div form {
        padding: 0 20px;
    }
    .rental_form_title {
        font-size: 20px;
    }
    .rental_form_textarea {
        height: 120px;
    }
    .rental_desc {
        font-size: 12px;
        padding: 0 40px;
    }
    .rental_form_check_label {
        font-size: 12px;
        flex-wrap: wrap;
    }
    .rental_bg {
        background-image: url('/img/rental_bg_m.png');
    }
}