/* =========================================
   클린콜 2.0 회원가입 / 정보수정 전용
   범위: #fregisterform, #register_form
========================================= */

/* 전체 폼 래퍼 */
#register_form{
    max-width: 720px;
    margin: 60px auto;
    padding: 50px 60px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* 섹션 타이틀 */
#register_form h2{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

/* UL 기본 리셋 */
#register_form ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 각 항목 */
#register_form li{
    margin-bottom: 28px;
}

/* 입력창 공통 */
#fregisterform .frm_input,
#fregisterform select,
#fregisterform textarea{
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all .2s ease;
    background: #fff;
}

/* textarea 예외 */
#fregisterform textarea{
    height: 120px;
    padding: 14px 16px;
    resize: vertical;
}

/* 포커스 */
#fregisterform .frm_input:focus,
#fregisterform select:focus,
#fregisterform textarea:focus{
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    outline: none;
}

/* half_input 가로 정렬 개선 */
#fregisterform .half_input{
    width: 48%;
}

#fregisterform .right_input{
    float: right;
}

/* 두 input 한 줄 배치 */
#register_form li:after{
    content:"";
    display:block;
    clear:both;
}

/* 안내문구 */
#fregisterform .frm_info{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:#6b7280;
}

/* 인증 완료 박스 */
#msg_certify{
    margin-top:12px;
    padding:12px;
    background:#eef4ff;
    border:1px solid #c7dbff;
    border-radius:8px;
    font-size:14px;
}

/* 버튼 영역 */
.btn_confirm{
    max-width: 720px;
    margin: 40px auto 80px;
    text-align: center;
}

/* 취소 버튼 */
.btn_confirm .btn_cancel{
    display:inline-block;
    height:50px;
    line-height:50px;
    padding:0 30px;
    border-radius:10px;
    background:#f3f4f6;
    color:#444;
    text-decoration:none;
    font-weight:600;
    margin-right:10px;
}

/* 가입 버튼 */
#btn_submit{
    height:50px;
    padding:0 40px;
    border-radius:10px;
    border:none;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

#btn_submit:hover{
    background:#1e4fd8;
}

/* 셀렉트 화살표 정리 */
#fregisterform select{
    appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg fill='%2399a1b3' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat:no-repeat;
    background-position:right 12px center;
    background-size:18px;
}

/* 자동등록방지 영역 */
.is_captcha_use{
    padding:20px;
    background:#f9fafb;
    border-radius:12px;
}

/* 반응형 */
@media (max-width: 768px){

    #register_form{
        padding: 30px 25px;
        margin: 30px 15px;
    }

    #fregisterform .half_input{
        width:100%;
        float:none;
        margin-bottom:15px;
    }

    #fregisterform .right_input{
        float:none;
    }

    .btn_confirm{
        margin: 30px 15px 60px;
    }

}


/* ===============================
   클린콜 2.0 입점신청 완료 화면
================================= */

.cleancall-result {
    max-width: 720px;
    margin: 80px auto;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: center;
}

.cleancall-result h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

.cleancall-result h2 strong {
    color: #1e73ff;
}

.cleancall-result .reg_result_p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.result_box {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.result_box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result_box li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid #eaeef4;
}

.result_box li:last-child {
    border-bottom: none;
}

.result_notice {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
}

.result_btn_area .btn_submit {
    display: inline-block;
    background: #1e73ff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease;
}

.result_btn_area .btn_submit:hover {
    background: #155ed4;
}


/* ===============================
   클린콜 2.0 로그인 전용
================================= */

#mb_login {
    max-width: 420px;
    margin: 100px auto;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

#mb_login h1 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
}

#login_fs {
    border: 0;
    padding: 0;
}

#login_fs input[type="text"],
#login_fs input[type="password"] {
    width: 100%;
    height: 52px;
    margin-bottom: 14px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    transition: all .2s ease;
}

#login_fs input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    outline: none;
}

#login_fs .btn_submit {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

#login_fs .btn_submit:hover {
    background: #1e4fd8;
}

#login_fs label[for="login_auto_login"] {
    font-size: 13px;
    margin-left: 6px;
    color: #666;
}

#login_info {
    margin-top: 30px;
    text-align: center;
}

#login_info h2 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #999;
}

#login_info a {
    font-size: 14px;
    color: #666;
    margin: 0 6px;
    text-decoration: none;
}

#login_info a:hover {
    color: #2563eb;
}

/* ===============================
   클린콜 2.0 통합 로그인
================================= */

#mb_login {
    max-width: 420px;
    margin: 100px auto;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* 타이틀 */
.login_title{
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
}

.login_sub{
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 35px;
}

/* 입력영역 */
#login_fs {
    border: 0;
    padding: 0;
}

#login_fs input[type="text"],
#login_fs input[type="password"] {
    width: 100%;
    height: 52px;
    margin-bottom: 14px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all .2s ease;
    background: #fff;
}

#login_fs input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    outline: none;
}

/* 로그인 버튼 */
#login_fs .btn_submit {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

#login_fs .btn_submit:hover {
    background: #1e4fd8;
}

/* 자동로그인 */
.login_option{
    margin-top: 12px;
    font-size: 13px;
    color: #6b7280;
}

.login_option input{
    margin-right: 6px;
}

/* 하단 링크 */
.login_helper{
    margin-top: 22px;
    text-align: center;
    font-size: 13px;
}

.login_helper a{
    color: #6b7280;
    text-decoration: none;
}

.login_helper a:hover{
    color: #2563eb;
}

/* 회원가입 영역 */
.login_signup{
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

.login_signup a{
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.login_signup a:hover{
    text-decoration: underline;
}

/* 반응형 */
@media (max-width: 768px){

    #mb_login{
        margin: 60px 20px;
        padding: 40px 25px;
    }

}

/* ===============================
   클린콜 2.0 약관 동의 페이지
================================= */

#register_wrap{
    max-width: 720px;
    margin: 80px auto;
    padding: 50px 60px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

#register_wrap p{
    font-size:14px;
    color:#6b7280;
    margin-bottom:25px;
}

/* 전체동의 영역 */
#fregister_chkall{
    margin-bottom:25px;
    padding:15px;
    background:#f9fafb;
    border-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

/* 약관 섹션 */
#fregister_term,
#fregister_private{
    margin-bottom:35px;
}

#fregister_term h2,
#fregister_private h2{
    font-size:18px;
    margin-bottom:12px;
    font-weight:700;
}

/* textarea */
#fregister_term textarea{
    width:100%;
    height:180px;
    padding:15px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#f9fafb;
    font-size:13px;
    margin-bottom:15px;
}

/* 개인정보 테이블 */
#fregister_private table{
    width:100%;
    border-collapse:collapse;
    font-size:13px;
    margin-bottom:15px;
}

#fregister_private th,
#fregister_private td{
    border:1px solid #e5e7eb;
    padding:10px;
    text-align:left;
}

#fregister_private th{
    background:#f3f4f6;
}

/* 동의 체크박스 */
.fregister_agree{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

/* 회원가입 버튼 */
.btn_confirm{
    margin-top:40px;
    text-align:center;
}

.btn_confirm .btn_submit{
    height:52px;
    padding:0 50px;
    border:none;
    border-radius:10px;
    background:#2563eb;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.btn_confirm .btn_submit:hover{
    background:#1e4fd8;
}

/* 반응형 */
@media (max-width:768px){

    #register_wrap{
        margin:30px 15px;
        padding:30px 25px;
    }

}

/* 회원가입 타입 선택 */

.register_type_tab{
    display:flex;
    margin-bottom:30px;
    border-bottom:1px solid #eee;
}

.register_type_tab button{
    flex:1;
    padding:14px 0;
    background:none;
    border:none;
    font-size:15px;
    font-weight:600;
    color:#9ca3af;
    cursor:pointer;
}

.register_type_tab button.active{
    color:#2563eb;
    border-bottom:3px solid #2563eb;
}

.section_desc{
    margin:-18px 0 18px;
    font-size:13px;
    color:#6b7280;
}
.register_head{ margin-bottom:30px; text-align:center; }
.register_title{ font-size:24px; font-weight:800; margin-bottom:8px; }
.register_desc{ font-size:14px; color:#6b7280; line-height:1.5; }