@charset "utf-8";
#wrap header { position: fixed; left: 50%; transform: translateX(-50%); }

/** LOGIN - 로그인 **/
.login_section { position: absolute; left: 0; top: 0; width: 100%; height: 100vh; min-height: 600px; background: #ffffff; } 
.login_section .login_info { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 600px; padding: 0 24px; } 
.login_info .txt_box { width: 100%; text-align: center; margin-bottom: 6vh; } 
.login_info .txt_box p { font-size: var(--font-small); color: rgba(34, 34, 34, 0.70); line-height: 20px; margin-top: 8px; } 
.login_info .social_login_list { width: 100%; } 
.login_info .social_login_list > li { margin-bottom: 12px; } 
.login_info .social_login_list > li:last-of-type { margin-bottom: 0; } 
.login_info .social_login_list .btn_link { display: block; width: 100%; height: 50px; font-size: 15px; font-weight: 500; line-height: 50px; text-align: center; border-radius: 4px; box-sizing: border-box; overflow: hidden; } 
.login_info .social_login_list .btn_link.kakao { color: #191919; background: var(--color-kakao); } 
.login_info .social_login_list .btn_link.naver { color: #ffffff; background: #03C75A; } 
.login_info .social_login_list .btn_link.email { color: rgba(52, 113, 220, 0.70); background: #F3F8FE; } 
.login_info .social_login_list .btn_link::before { width: 18px; height: 18px; vertical-align: -4px; content: ''; display: inline-block; margin-right: 10px; } 
.login_info .social_login_list .btn_link.kakao::before { background: url(../../image/icon/icon_kakao_s_black.svg) no-repeat center center; background-size: contain; } 
.login_info .social_login_list .btn_link.naver::before { background: url(../../image/icon/icon_naver.svg) no-repeat center center; background-size: contain; } 
.login_info .social_login_list .btn_link.email::before { background: url(../../image/icon/icon_email.svg) no-repeat center center; background-size: contain; } 
.login_info .email_input_box { display: none; } 
.login_info .email_input_box ol { padding-top: 12px; } 
.login_info .email_input_box ol li { margin-bottom: 12px; } 
.login_section .etc_list { position: absolute; left: 0; bottom: 30px; width: 100%; z-index: 5; } 
.login_section .etc_list ul { display: flex; align-items: center; justify-content: center; } 
.login_section .etc_list ul li { padding: 0 20px; border-right: var(--border); } 
.login_section .etc_list ul li:last-of-type { border-right: none; } 
.login_section .etc_list ul li a { display: inline-block; font-size: var(--font-small); color: var(--color-black-40); line-height: 16px; } 

/*? 모바일 */
@media only screen and (max-device-width : 640px) {
    .login_section {
        height: calc(var(--vh,1vh) * 100);
    }
}