@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* 기본 설정 */
.sound_only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* 로그인 메인 컨테이너 */
#mb_login.mbskin {
    padding: 40px 0 80px;
    background: #f9f9f9;
    min-height: calc(100vh - 200px);
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

.login_container {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
}

.login_wrap {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* 로그인 헤더 */
.login_header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.login_header h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.login_header p {
    opacity: 0.9;
    font-size: 14px;
    margin: 0;
}

/* 로그인 폼 영역 */
.login_form_wrap {
    padding: 30px;
}

.mb_log_cate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mb_log_cate h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.btn_join {
    background: transparent;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn_join:hover {
    background: #ff6b6b;
    color: white;
}

/* 폼 필드셋 */
#login_fs {
    border: none;
    padding: 0;
    margin: 0;
}

.form_group {
    margin-bottom: 20px;
    position: relative;
}

.form_group.focused .form_label {
    color: #ff6b6b;
}

.form_group.focused .frm_input {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.form_label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    transition: color 0.3s;
}

.form_label i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.frm_input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.frm_input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.frm_input::placeholder {
    color: #999;
}

/* 로그인 정보 영역 */
.login_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 25px;
    font-size: 13px;
}

.login_auto_wrap {
    flex: 1;
}

.login_find_wrap {
    text-align: right;
}

.find_link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.find_link:hover {
    color: #ff6b6b;
}

.find_link i {
    margin-right: 4px;
}

/* 체크박스 스타일 */
.chk_box {
    position: relative;
    display: inline-block;
}

.chk_box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chk_box label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    user-select: none;
}

.chk_icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s;
    background: white;
}

.chk_box input[type="checkbox"]:checked + label .chk_icon {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.chk_box input[type="checkbox"]:checked + label .chk_icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* 로그인 버튼 */
.btn_login {
    //width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

#btn_login_main {
    width: 100%;
}

.btn_login:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff6b6b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,107,107,0.3);
}

.btn_login i {
    margin-right: 8px;
}

/* 비회원 구매 섹션 */
.guest_order_section {
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.guest_order_wrap {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.guest_header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.guest_header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.guest_header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.guest_content {
    padding: 25px;
}

.privacy_content {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    background: #fafafa;
    font-size: 13px;
    line-height: 1.6;
}

.agree_box {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.btn_guest_order {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.btn_guest_order:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40,167,69,0.3);
}

.btn_guest_order i {
    margin-right: 8px;
}

/* 주문조회 섹션 */
.order_inquiry_section {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.order_inquiry_wrap {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.inquiry_header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.inquiry_header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.inquiry_form {
    padding: 25px;
    border: none;
    margin: 0;
}

.btn_inquiry {
    width: 100%;
    padding: 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    margin-top: 10px;
}

.btn_inquiry:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn_inquiry i {
    margin-right: 8px;
}

.inquiry_info {
    padding: 20px 25px;
    background: #f8f9fa;
}

.info_box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info_box i {
    color: #17a2b8;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info_box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.info_box strong {
    color: #333;
    font-weight: 600;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    #mb_login.mbskin {
        padding: 20px 0 40px;
    }
    
    .login_container {
        padding: 0 15px;
    }
    
    .login_form_wrap {
        padding: 20px;
    }
    
    .login_header {
        padding: 25px 15px;
    }
    
    .mb_log_cate {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .login_info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .guest_content,
    .inquiry_form {
        padding: 20px;
    }
    
    .guest_header,
    .inquiry_header {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .login_container {
        padding: 0 10px;
    }
    
    .login_form_wrap {
        padding: 15px;
    }
    
    .login_header h1 {
        font-size: 20px;
    }
    
    .btn_login,
    .btn_guest_order,
    .btn_inquiry {
        font-size: 14px;
        padding: 12px;
    }
}







@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: white;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.sound_only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* 회원가입 메인 컨테이너 */
.register {
    padding: 40px 0 80px;
    background: #f9f9f9;
    min-height: calc(100vh - 200px);
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
}

.register form {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 상단 안내 메시지 */
.register > form > p {
    background: white;
    border-radius: 12px 12px 0 0;
    padding: 25px 30px;
    margin: 0 0 0 0;
    font-size: 14px;
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.register > form > p i {
    color: #856404;
    font-size: 18px;
    flex-shrink: 0;
}

/* 약관 섹션 */
#fregister_term,
#fregister_private {
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

#fregister_term:hover,
#fregister_private:hover {
    border-color: #ff6b6b;
    box-shadow: 0 5px 20px rgba(255,107,107,0.1);
}

#fregister_private {
    border-top: none;
    margin-bottom: 20px;
}

/* 약관 제목 */
#fregister_term h2,
#fregister_private h2 {
    background: #f5f5f5;
    padding: 20px 30px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

#fregister_term h2::before {
    content: '📋';
    font-size: 16px;
}

#fregister_private h2::before {
    content: '🛡️';
    font-size: 16px;
}

/* 약관 내용 영역 */
#fregister_term textarea {
    width: 100%;
    height: 180px;
    margin: 20px 30px;
    margin-bottom: 0;
    width: calc(100% - 60px);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    background: #f5f5f5;
    resize: none;
    font-family: inherit;
    transition: all 0.3s;
}

#fregister_term textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

/* 개인정보 테이블 */
#fregister_private > div {
    padding: 20px 30px 0;
}

#fregister_private table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

#fregister_private table caption {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#fregister_private table th {
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
    padding: 15px 12px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

#fregister_private table td {
    padding: 15px 12px;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.5;
    font-size: 13px;
}

#fregister_private table tbody tr:last-child td {
    border-bottom: none;
}

#fregister_private table tbody tr:hover {
    background: #f8f9fa;
}

/* 동의 체크박스 영역 */
.fregister_agree {
    background: #f5f5f5;
    border: none;
    padding: 20px 30px;
    margin: 0;
    border-top: 1px solid #e0e0e0;
}

.fregister_agree input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.fregister_agree label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    user-select: none;
    gap: 12px;
    transition: all 0.3s;
}

.fregister_agree label span:first-child {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s;
    background: white;
    flex-shrink: 0;
}

.fregister_agree:hover label span:first-child {
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.fregister_agree input[type="checkbox"]:checked + label span:first-child {
    background: #ff6b6b;
    border-color: #ff6b6b;
    transform: scale(1.05);
}

.fregister_agree input[type="checkbox"]:checked + label span:first-child::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.fregister_agree label b {
    font-weight: 500;
    color: #333;
}

/* 라벨 텍스트가 보이도록 수정 */
.fregister_agree label b.sound_only {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
    font-size: 14px;
    line-height: 1.5;
}

/* 전체 동의 섹션 */
#fregister_chkall {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(255,107,107,0.2);
}

#fregister_chkall:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.3);
}

#fregister_chkall.fregister_agree {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    border: none;
    border-top: none;
}

#fregister_chkall label {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

#fregister_chkall label span:first-child {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
}

#fregister_chkall input[type="checkbox"]:checked + label span:first-child {
    background: white;
    border-color: white;
}

#fregister_chkall input[type="checkbox"]:checked + label span:first-child::after {
    color: #ff6b6b;
}

/* 버튼 영역 */
.btn_confirm {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn_close,
.btn_submit {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn_close {
    background: #6c757d;
    color: white;
}

.btn_close:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(108,117,125,0.3);
}

.btn_submit {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
}

.btn_submit:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff6b6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.3);
}

/* 소셜 로그인 영역 (있을 경우) */
.social_login {
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 20px 30px;
    text-align: center;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .register {
        padding: 20px 0 40px;
    }
    
    .register form {
        padding: 0 15px;
    }
    
    .register > form > p {
        padding: 20px 15px;
        font-size: 13px;
        border-radius: 8px 8px 0 0;
    }
    
    #fregister_term h2,
    #fregister_private h2 {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    #fregister_term textarea {
        margin: 15px 20px 0;
        width: calc(100% - 40px);
        height: 150px;
    }
    
    #fregister_private > div {
        padding: 15px 20px 0;
    }
    
    .fregister_agree {
        padding: 15px 20px;
    }
    
    #fregister_chkall {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    #fregister_chkall label {
        font-size: 15px;
    }
    
    .btn_confirm {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .btn_close,
    .btn_submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    #fregister_private table th,
    #fregister_private table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .register form {
        padding: 0 10px;
    }
    
    .register > form > p {
        padding: 15px 12px;
        font-size: 12px;
    }
    
    #fregister_term h2,
    #fregister_private h2 {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    #fregister_term textarea {
        margin: 12px 15px 0;
        width: calc(100% - 30px);
        height: 120px;
        font-size: 12px;
    }
    
    #fregister_private > div {
        padding: 12px 15px 0;
    }
    
    .fregister_agree {
        padding: 12px 15px;
    }
    
    .fregister_agree label {
        font-size: 13px;
    }
    
    #fregister_chkall {
        padding: 15px 12px;
    }
    
    #fregister_private table th,
    #fregister_private table td {
        padding: 8px 6px;
        font-size: 11px;
    }
}





















@charset "utf-8";

/* 회원정보 입력/수정 페이지 스타일 */

/* 회원가입 메인 컨테이너 */
.register {
    padding: 40px 0 80px;
    background: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.register form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 폼 컨테이너 */
#register_form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

/* 섹션 내부 */
.register_form_inner {
    border-bottom: 1px solid #eee;
}

.register_form_inner:last-child {
    border-bottom: none;
}

/* 섹션 제목 */
.register_form_inner h2 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.register_form_inner h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255,255,255,0.3);
}

/* 리스트 스타일 */
.register_form_inner ul {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.register_form_inner li {
    margin-bottom: 25px;
    position: relative;
}

.register_form_inner li:last-child {
    margin-bottom: 0;
}

/* 라벨 스타일 */
.register_form_inner label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    position: relative;
}

.register_form_inner label.frm_label {
    margin-bottom: 8px;
}

/* 입력 필드 */
.frm_input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    background: white;
}

.frm_input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.frm_input.full_input {
    width: 100%;
}

.frm_input.twopart_input {
    width: 150px;
    display: inline-block;
    margin-right: 10px;
}

.frm_input.frm_address {
    margin-bottom: 8px;
}

/* 반쪽 입력 필드 */
.half_input {
    width: calc(50% - 5px);
    display: inline-block;
    vertical-align: top;
}

.half_input.left_input {
    margin-right: 10px;
}

.half_input.margin_input {
    margin-bottom: 25px;
}

/* 텍스트에리어 */
.register_form_inner textarea {
    width: 100%;
    height: 80px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
    transition: all 0.3s;
}

.register_form_inner textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

/* 파일 입력 */
.register_form_inner input[type="file"] {
    padding: 8px 0;
    border: none;
    background: none;
}

/* 버튼 스타일 */
.btn_frmline {
    padding: 10px 20px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 5px;
}

.btn_frmline:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

/* 툴팁 스타일 */
.tooltip_icon {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
    position: relative;
}

.tooltip_icon:hover {
    color: #ff6b6b;
}

.tooltip {
    position: absolute;
    top: 25px;
    left: 0;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    z-index: 1000;
    display: none;
    max-width: 300px;
    white-space: normal;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #333;
}

/* 체크박스 스타일 */
.chk_box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.chk_box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.chk_box label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    gap: 8px;
}

.chk_box label span:first-child {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
    background: white;
    flex-shrink: 0;
}

.chk_box:hover label span:first-child {
    border-color: #ff6b6b;
}

.chk_box input[type="checkbox"]:checked + label span:first-child {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.chk_box input[type="checkbox"]:checked + label span:first-child::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 11px;
    font-weight: bold;
}

.chk_box label b.sound_only {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    overflow: visible;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.chk_li {
    color: #666;
    font-size: 13px;
    margin-left: 5px;
}

/* 인증 관련 */
.cert_desc {
    color: #ff6b6b;
    font-size: 12px;
}

.cert_req {
    color: #e74c3c;
    font-weight: 600;
    margin-left: 10px;
}

#msg_certify {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* 메시지 영역 */
#msg_mb_id,
#msg_mb_nick {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #dc3545;
}

/* 자동등록방지 */
.is_captcha_use {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* 회원 이미지/아이콘 */
.reg_mb_img_file img,
.register_form_inner img {
    max-width: 100px;
    max-height: 100px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.register_form_inner label.inline {
    display: inline;
    margin-left: 10px;
    font-weight: 400;
}

/* 버튼 영역 */
.btn_confirm {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn_close,
.btn_submit {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.btn_close {
    background: #6c757d;
    color: white;
}

.btn_close:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(108,117,125,0.3);
}

.btn_submit {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
}

.btn_submit:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff6b6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,107,0.3);
}

.btn_submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .register {
        padding: 20px 0 40px;
    }
    
    .register form {
        padding: 0 15px;
    }
    
    .register_form_inner h2 {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .register_form_inner ul {
        padding: 20px;
    }
    
    .half_input {
        width: 100%;
        display: block;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .half_input.margin_input {
        margin-bottom: 15px;
    }
    
    .btn_confirm {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn_close,
    .btn_submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 280px;
        white-space: normal;
    }
    
    .frm_input.twopart_input {
        width: 120px;
        margin-right: 5px;
    }
    
    .btn_frmline {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .register form {
        padding: 0 10px;
    }
    
    .register_form_inner h2 {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .register_form_inner ul {
        padding: 15px;
    }
    
    .register_form_inner li {
        margin-bottom: 20px;
    }
    
    .frm_input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .frm_input.twopart_input {
        width: 100px;
    }
    
    .btn_frmline {
        padding: 6px 12px;
        font-size: 11px;
        margin-top: 5px;
        margin-left: 0;
    }
    
    .chk_box {
        flex-direction: column;
        gap: 8px;
    }
    
    .tooltip {
        max-width: 250px;
    }
}







/* 자동등록방지(캡차) 전용 스타일 */

.is_captcha_use {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.captcha {
    border: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.captcha legend {
    float: none;
    width: auto;
    padding: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.captcha legend label {
    margin: 0;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha legend label::before {
    content: '🔒';
    font-size: 18px;
}

/* 캡차 이미지 */
#captcha_img {
    display: block;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 캡차 입력 필드 */
.captcha_box {
    width: 120px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-right: 10px;
    transition: all 0.3s;
    background: white;
}

.captcha_box:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

/* 캡차 버튼들 */
#captcha_mp3,
#captcha_reload {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    margin-right: 8px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#captcha_mp3:hover,
#captcha_reload:hover {
    background: #f8f9fa;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

/* 버튼 아이콘 */
#captcha_mp3 span::before {
    content: '🔊';
    font-size: 14px;
}

#captcha_reload span::before {
    content: '🔄';
    font-size: 14px;
}

/* 캡차 안내 텍스트 */
#captcha_info {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* 캡차 컨테이너 레이아웃 */
.captcha > div,
.captcha .captcha-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .is_captcha_use {
        padding: 20px;
    }
    
    .captcha legend {
        margin-bottom: 12px;
    }
    
    .captcha legend label {
        font-size: 15px;
    }
    
    #captcha_img {
        margin-bottom: 12px;
    }
    
    .captcha_box {
        width: 100px;
        padding: 10px 12px;
        font-size: 14px;
        margin-right: 8px;
    }
    
    #captcha_mp3,
    #captcha_reload {
        padding: 8px 12px;
        font-size: 12px;
        margin-right: 6px;
    }
    
    .captcha > div,
    .captcha .captcha-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    #captcha_info {
        margin-top: 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .is_captcha_use {
        padding: 15px;
    }
    
    .captcha legend label {
        font-size: 14px;
    }
    
    .captcha_box {
        width: 90px;
        padding: 8px 10px;
        font-size: 13px;
    }
    
    #captcha_mp3,
    #captcha_reload {
        padding: 6px 10px;
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    #captcha_info {
        font-size: 11px;
    }
}
































/* 회원가입 결과 페이지 전용 스타일 */

/* 결과 페이지 컨테이너 */
#reg_result.register {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* 축하 메시지 */
.reg_result_p {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.reg_result_p i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

.reg_result_p strong {
    font-size: 22px;
    font-weight: 700;
    color: #ffe66d;
    display: inline-block;
    margin: 0 5px;
}

/* 결과 텍스트 */
.result_txt {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #495057;
    text-align: left;
}

.result_txt:last-of-type {
    margin-bottom: 30px;
}

/* 이메일 정보 박스 */
#result_email {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    text-align: left;
}

#result_email span {
    display: inline-block;
    width: 80px;
    font-weight: 500;
    color: #1565c0;
    margin-right: 10px;
}

#result_email strong {
    color: #0d47a1;
    font-weight: 600;
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #90caf9;
}

#result_email br {
    margin-bottom: 10px;
}

/* 버튼 영역 */
.btn_confirm_reg {
    text-align: center;
    margin: 30px auto 0;
    max-width: 600px;
    padding: 0 30px;
}

.reg_btn_submit {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.reg_btn_submit:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff6b6b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.reg_btn_submit::before {
    content: '🏠';
    margin-right: 8px;
    font-size: 16px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    #reg_result.register {
        margin: 20px 15px;
        padding: 30px 20px;
        border-radius: 8px;
    }
    
    .reg_result_p {
        padding: 30px 20px;
        font-size: 16px;
    }
    
    .reg_result_p i {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .reg_result_p strong {
        font-size: 20px;
    }
    
    .result_txt {
        padding: 15px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    #result_email {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    #result_email span {
        width: 70px;
        font-size: 13px;
    }
    
    #result_email strong {
        font-size: 13px;
        padding: 3px 6px;
    }
    
    .btn_confirm_reg {
        padding: 0 20px;
    }
    
    .reg_btn_submit {
        padding: 15px 40px;
        font-size: 16px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    #reg_result.register {
        margin: 15px 10px;
        padding: 25px 15px;
    }
    
    .reg_result_p {
        padding: 25px 15px;
        font-size: 15px;
    }
    
    .reg_result_p i {
        font-size: 36px;
    }
    
    .reg_result_p strong {
        font-size: 18px;
    }
    
    .result_txt {
        padding: 12px;
        font-size: 12px;
        line-height: 1.6;
    }
    
    #result_email {
        padding: 15px 12px;
    }
    
    #result_email span {
        width: 60px;
        font-size: 12px;
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    #result_email strong {
        font-size: 12px;
        display: block;
        margin-bottom: 10px;
    }
    
    .btn_confirm_reg {
        padding: 0 15px;
    }
    
    .reg_btn_submit {
        width: 100%;
        padding: 12px 30px;
        font-size: 15px;
    }
}



























