body {
	margin: 0;
	padding: 0;
}

em {
	font-style: normal;
}

button, a {
	cursor: pointer;
}

h3, p {
	margin: 0;
}

#signin_form {
	display: flex;
	width: 100vw;
	min-width: 1100px;
	height: 100vh;
    overflow-x: hidden;
}

.form_left {
	position: relative;
	flex: 1;
	/* height: 100vh; */
	box-sizing: border-box;
	background: url('../../images/bg/img-loginback.png') no-repeat;
	background-size: cover;
	text-align: center;
}

.form_left > div {
	position: absolute;
	width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form_left > div p {
	font-size: 30px;
	color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.form_left > div p em {
	font-weight: bold;
}

.form_left > div img {
	margin-top: 90px;
}

.form_right {
	position: relative;
	flex: 1.5;
	/* height: 100vh; */
	box-sizing: border-box;
}

.form_right > div {
	position: absolute;
	display: inline-block;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
}

.form_right h3 {
	font-size: 20px;
	color: #333333;
}

.form_right > div >  p {
	font-size: 14px;
	color: #666666;
	margin-top: 6px;
}



/* tab 내용 */

.tab_box {
	margin-top: 40px;
}

.tab_title {
    margin: 0;
    padding: 0;
}

.tab_title li {
    list-style: none;
    float: left;
    width: 191px;
    height: 45px;
    line-height: 45px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    color: #999999;
    border: 1px solid #DDDDDD;
    border-bottom: 1px solid #5F4EEE;
    background: #FAFAFA 0% 0% no-repeat padding-box;
}

.tab_title li.on {
    color: #5F4EEE;
    font-weight: bold;
    border: 1px solid #5F4EEE;
    border-bottom: none;
    background: #FFF;
}

.tab_cont {
    clear: both;
    width: 387px;
}

.tab_cont > div {
    display: none;
    padding-top: 40px;
}

.tab_cont > div.im_ai {
    margin-bottom: 100px;
}

.tab_cont div .id_pw_title {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin-top: 15px;
}

.tab_cont > div.on {
    display: block;
}

.tab_cont > div input {
    width: 387px;
    height: 50px;
    box-sizing: border-box;
    padding-left: 10px;
    border: 1px solid #DDDDDD;
}

.tab_cont > div input:focus {
    border: 1px solid #5F4EEE;
    outline: 0 none;
}

.tab_cont > div div,
.tab_cont > div input {
    margin: 5px 0;
}

.error_txt {
    display: block;
    font-size: 14px;
    color: #EF3454;
}

.login_option {
    padding-top: 25px;
}

.login_check,
.login_btn {
    display: inline-block;
}

.login_check input {
    display: none; 
}

input[type=checkbox] + label {
    display: inline-block;
    cursor: pointer;
    padding-left: 25px;
    height: 16px;
    font-size: 14px;
    line-height: 15px;
    background: url('../../img/checkbox-none.svg') left/16px no-repeat;
}

input[type=checkbox]:checked + label {
    background-image: url('../../img/checkbox.svg');
    background-repeat: no-repeat;
    background-size: 16px;
}

.login_option .login_btn {
    float: right;
}

.login_option .login_btn a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    margin-left: 10px;
}

.go_login {
    background: #5F4EEE 0% 0% no-repeat padding-box;
    width: 387px;
    height: 50px;
    color: #FFF;
    font-size: 20px;
    margin-top: 20px;
    border: none;
    outline: none;
}

.no_member {
    color: #666666;
    font-size: 14px;
    text-align: center;
    margin-top: 20px !important;
    background: #F8F9FD 0% 0% no-repeat padding-box;
    padding: 9px 0;
    border-radius: 4px;
}

.no_member a {
    color: #5F4EEE;
    margin-left: 5px;
    text-decoration: underline;
}


/* 개인회원 */

.im_ai .im_ai_login .sns {
	margin-top: 40px;
    border-bottom: 2px solid #DDD;
}

.im_ai .im_ai_login .sns span {
    display: block;
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.im_ai .im_ai_login .sns .sns_flex {
	display: flex;
	height: 58px;
    margin: 20px 0 40px;
}

.im_ai .im_ai_login .sns .sns_flex > span {
	flex: 1;
}

.im_ai .im_ai_login .sns .sns_flex > span a {
	display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 0 auto;
	background-repeat: no-repeat;
	background-position: center;
}

.im_ai .im_ai_login .sns .sns_flex > span a.naver {
	background-color: #03CF5D;
	background-image: url('../../images/ico/icon_naver.svg');
}

.im_ai .im_ai_login .sns .sns_flex > span a.kakao {
	background-color: #FFE400;
	background-image: url('../../images/ico/icon_kakao.svg');
}

.im_ai .im_ai_login .sns .sns_flex > span a.facebook {
	background-color: #1E4BA0;
	background-image: url('../../images/ico/icon_facebook.svg');
}

.im_ai .im_ai_login .sns .sns_flex > span a.apple {
	background-color: #000000;
	background-image: url('../../images/ico/icon_apple.svg');
}

#switchBtn {
    background: #3B61D5 0% 0% no-repeat padding-box;
    margin-top: 20px;
    display: block;
    width: 380px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 4px;
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
    border: none;
}

.im_ai img {
    display: block;
    margin-top: 45px;
    background: #F8F9FD 0% 0% no-repeat padding-box;
    border-radius: 4px;
    padding: 9px 0;
}
















