@charset "utf-8";

/* =========================================
   1. Login Header & Wrapper
   ========================================= */
.wrap_login {
    width: 100%;
    max-width: 520px;
    padding: 20px;
    margin: auto;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.mfa-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.service_title {
    color: #00A9E0;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1.5px;
    margin: 0;
}

.slogan {
    color: #00A9E0;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 1.5px;
    opacity: 1;
    word-break: keep-all;
}

/* =========================================
   2. Login Form Specifics
   ========================================= */
.check {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: -0.3px;
    text-align: center;
    color: #1b2529;
}

.login-helper {
    display: flex;
    justify-content: space-between;
    align-items: center;            
    width: 100%;
    height: 40px;              
    margin-bottom: 10px;
}

/* 아이디 저장 체크박스 스타일링 */
.chk_area {
    display: flex;
    align-items: center;
    height: 100%; 
}

/* 체크박스 숨김 */
.chk_area input[type="checkbox"] {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

/* 라벨 (텍스트 + 가상요소 박스) */
.chk_area label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    padding-left: 26px; 
    height: 100%;       
    line-height: 1;     
}

/* 체크박스 테두리 (::before) */
.chk_area label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); 
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s;
}

/* 체크 표시 (::after) */
.chk_area label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translateY(-65%) rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s;
}

/* 체크 상태 스타일 */
.chk_area input[type="checkbox"]:checked + label { color: #00A9E0; }
.chk_area input[type="checkbox"]:checked + label::before { border-color: #00A9E0; background-color: #00A9E0; }
.chk_area input[type="checkbox"]:checked + label::after { opacity: 1; transform: translateY(-65%) rotate(45deg) scale(1); }

/* 찾기 링크 */
.find-links {
    display: flex;
    align-items: center;
    height: 100%;
	
	/*아이디저장과 줄맞추기*/
    position: relative; 
    top: -3px;
}

/* 링크 텍스트 및 구분선 공통 설정 */
.find-links a, 
.find-links .divider {
    font-size: 13px;
    color: #90a0a6;
    text-decoration: none;
    line-height: 1; 
    display: inline-block; 
    vertical-align: middle;
}

/* 구분선 스타일 */
.find-links .divider {
    margin: 0 8px; 
    color: #e2e8f0;
    font-size: 11px;
    position: relative;
    top: -1px; 
}

.find-links a:hover {
    text-decoration: underline !important;
    color: #00A9E0;
}

/* =========================================
   3. Help Area (Bottom Tabs)
   ========================================= */
.help-area {
    margin-bottom: 30px;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    margin-bottom: 12px;
}

/* 탭 네비게이션 */
.help-tabs {
    display: flex;
    background: #ffffff;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 60px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    border-bottom: none;
}

.help-tabs li {
    flex: 1;
    height: 100%;
}

.tab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.2s ease;
}

.help-tabs li:last-child .tab-item {
    border-right: none;
}

.tab-item.active {
    background: #ffffff;
    color: #00A9E0;
    font-weight: 700;
}

.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #00A9E0;
}

/* 도움말 컨텐츠 박스 */
.help-content-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.help-item {
    margin-bottom: 10px;
}

.help-item:last-child {
    margin-bottom: 0;
}

.help-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.help-item a:hover {
    border-color: #00A9E0;
    background: #f0f9ff;
    color: #00A9E0;
}

.help-item.arrow a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #cbd5e1;
    border-right: 2px solid #cbd5e1;
    transform: rotate(45px);
    transition: border-color 0.2s;
}

.help-item.arrow a:hover::after {
    border-color: #00A9E0;
}

/* 모바일 대응 */
@media (max-width: 480px) {
    .main_ci_logo {
        height: 35px;
    }
    .service_title {
        font-size: 16px;
    }
}