/* 모바일 리얼모델모집 페이지 스타일 */
.realmodel_wrap {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* 상담 배너 영역 */
.realmodel_banner {
    width: 100%;
    background: linear-gradient(135deg, #c1f3f0 0%, #47c1c8 100%);
    padding: 40px 15px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-sizing: border-box;
}

.realmodel_banner h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.3;
}

.realmodel_banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.realmodel_banner .banner_btn {
    display: inline-block;
    background: #fff;
    color: #2c3e50;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
}

/* 이미지 갤러리 영역 */
.realmodel_gallery {
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.realmodel_gallery img {
    width: 100%;
}

/* 안내사항 */
.realmodel_notice {
    margin: 0 0 30px;
    padding: 20px;
    background: #c1f3f0;
    border-radius: 10px;
}

.realmodel_notice h4 {
    font-size: 15px;
    font-weight: 600;
    color: rgb(14, 109, 135);
    margin-bottom: 12px;
}

.realmodel_notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.realmodel_notice ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    font-size: 13px;
    color: rgb(14, 109, 135);
    line-height: 1.5;
}

.realmodel_notice ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

/* 신청폼 영역 */
.realmodel_form_section {
    padding: 30px 0;
    background: #fff;
}

.realmodel_form_section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.realmodel_form_section .form_desc {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-bottom: 25px;
}

.realmodel_form {
    background: #f8f9fa;
    padding: 20px 15px;
    border-radius: 15px;
}

.realmodel_form .form_row {
    margin-bottom: 15px;
}

/* 그리드 시스템 - 모바일 */
.realmodel_form .form_row_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.realmodel_form .form_row_grid .form_field {
    min-width: 0;
}

.realmodel_form .form_row_grid .form_field.col-full {
    grid-column: span 2;
}

.realmodel_form .radio_group {
    display: flex;
    gap: 15px;
    padding: 10px;
}

.realmodel_form .radio_group label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 13px;
}

.realmodel_form .radio_group input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.realmodel_form .checkbox_group {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    padding: 10px;
}

.realmodel_form .checkbox_group label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 13px;
}

.realmodel_form .checkbox_group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* 파일 업로드 스타일 */
.realmodel_form .file_upload {
    position: relative;
}

.realmodel_form .file_upload input[type="file"] {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 12px;
    background: #fff;
    cursor: pointer;
    box-sizing: border-box;
    color: #666;
    height: 33px;
}

.realmodel_form .file_upload input[type="file"]::-webkit-file-upload-button {
    padding: 8px 12px;
    margin-right: 10px;
    margin-bottom: 0;
    background: #c1f3f0;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
}

.realmodel_form .file_upload input[type="file"]::file-selector-button {
    padding: 8px 12px;
    margin-right: 10px;
    margin-bottom: 0;
    background: #c1f3f0;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
}

.realmodel_form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.realmodel_form label span {
    color: #47c1c8;
}

.realmodel_form input[type="text"],
.realmodel_form select,
.realmodel_form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    color: #333;
    background-color: #fff;
    -webkit-appearance: none;
}

.realmodel_form input[type="text"]:focus,
.realmodel_form select:focus,
.realmodel_form textarea:focus {
    outline: none;
    border-color: #47c1c8;
}

.realmodel_form textarea {
    height: 100px;
    resize: none;
}

.realmodel_form .agree_box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.realmodel_form .agree_box .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.realmodel_form .agree_box .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.realmodel_form .agree_box .checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    font-size: 13px;
}

.realmodel_form .agree_box .btn_privacy_pop {
    color: #3498db;
    font-size: 12px;
    text-decoration: none;
}

.realmodel_form .submit_btn {
    width: 100%;
    padding: 15px;
    background: #47c1c8;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

@media screen and (max-width: 415px) {
    .realmodel_form .checkbox_group {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        padding: 10px;
    }
}

