
/* 로그인 공통 속성*/
.user_form {
    min-height: calc(100vh - 390px);
    padding: 110px 0 120px;
    box-sizing: border-box;
}

.user_form .ttl_box h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.user_form .ttl_box+ul,
.login .ttl_box+form {
    margin-top: 50px;
}
.join .ttl_box+form{margin-top: 60px;}

/* login btn  */
.user_form button {
    display: block;
    font-size: 18px;
    text-align: center;
    width: 100%;
    height: 52px;
    line-height: 52px;
    font-weight: 500;
}

.user_form .btn01 {
    display: block;
    font-size: 18px;
    text-align: center;
    width: 100%;
    font-weight: 500;
    height: 62px;
    line-height: 62px;
    max-width: 460px;
}

.user_form .btn02 {
    display: block;
    font-size: 18px;
    text-align: center;
    width: 100%;
    font-weight: 500;
    height: 52px;
    line-height: 52px;
}


.user_form .full_btn {
    background-color: var(--pt-c);
    color: #fff;
}

.user_form .line_btn {
    border: 1px solid #35353f;
    color: #35353f;
}

.naver {
    background-color: #1de000;
    color: #fff;
}

.kakao {
    color: #3b1e1e;
    background-color: #f9e000;
}


.user_form select,
.user_form input {
    width: 100%;
    height: 52px;
    line-height: 52px;
}

.user_form .inner {
    max-width: 640px;
}
/* 인증이나 , 인증확인 등등 버튼_ 인풋 함께 있는 레이아웃 */
.cfm_box{
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.cfm_box > span:nth-of-type(1) {
    width: calc(100% - 162px);
}

.cfm_box > span:nth-of-type(2) {
    width: 152px;
    margin-left: 10px;
}

/* email */
.email_warp > span{
    width: calc(33.333% - 13.333px);
}
.email_warp > span:nth-of-type(1){
    width: calc(33.3333% + 30px);
}
.email_warp > span:last-of-type{
    margin-left: 10px;
}
.email_warp > span:nth-of-type(1) input{
    width: calc(100% - 30px);
}
.email_warp .at{
   display: inline-block;
   width: 30px;
   text-align: center;

}

/* 전화번호로 찾기 */
.user_form .phon_num {
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.user_form .phon_num span {
    width: calc(33.3333% - 10px);
    position: relative;
    display: inline-block;
}

.user_form .phon_num span+span::after {
    position: absolute;
    content: '';
    left: -10.5px;
    top:50%;
    height: 1px;
    width: 5px;
    background-color: #757575;
}

/* login */
.login .inner {
    max-width: 460px;
}


.login .login_form input {
    margin-bottom: 10px;
}

.login .login_check_wrap {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    font-size: 15px;
}

.login .login_check_wrap a {
    color: #454545
}

.simple_login_line {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.simple_login_line::before {
    content: '';
    position: absolute;
    background-color: #dddddd;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    margin-top: -0.5px;
}

.simple_login_line span {
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 0 17px;
    font-weight: 500;
    font-size: 18px;
    color: #35353f;
}

.simple_login_box button {
    background-position: left 20px center;
    background-repeat: no-repeat;
}

.simple_login_box button+button {
    margin-top: 10px;
}

.simple_login_box .naver {
    background-image: url(../img/ico/naver_ico.png);
}

.simple_login_box .kakao {
    background-image: url(../img/ico/kakao_ico.png);
}




/* 계정 찾기  */

.login_find .find_id {
    padding: 40px 0;
    /* border: 1px solid #dbdbdb; */
    border-bottom: 0;
    box-sizing: border-box;
}

.user_form .find_form {
    display: none;
    margin-right: 0;
    width: 100%;
    border: none;
    margin-top: 0;
}

.user_form .find_form.on {
    display: block;
}

.input_content>div+div {
    margin-top: 30px
}

.user_form .input_wrap>*+* {
    margin-top: 10px
}

.user_form .input_wrap > label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
}

.find_cont_wrap {
    padding-top: 40px
}
.find_cont_wrap >p{
    padding-bottom: 30px;
    padding-left: 1.2em;
    line-height: 1.5;
    text-indent: -1.2em;
}


.user_form .btn_wrap {
    margin-top: 60px;
}
.message {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.333;
}
.message.danger {
color: var(--danger);
}

.message.dangerPW {
color: var(--danger);
}

.message.nomal {
    color: #757575;
}

.message.nomalPW {
    color: #757575;
}

.message.okayPW {
    color: #0a6ec2;
}

.message.okay {
    color: #0a6ec2;
}

/* member tap */
.member_tap {
    width: 100%;
    display: flex;
}

.member_tap li {
    flex: 1;
    position: relative;
}
.member_tap li+li{
    margin-left: -1px;
}
.member_tap li a {
    display: block;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    border: 1px solid #dbdbdb;
    border-bottom: 1px solid #252525;
}

.member_tap li.on{
    z-index: 10;

}
.member_tap li.on a{
    color: #252525;
    border: 1px solid #252525;
    border-bottom: 1px solid transparent;
}

/* join  회원가입*/
.join .inner{
    max-width: 640px;
}
.join .input_content{
    margin-bottom: 40px;
}
.agree_wrap h3{
    margin: 60px 0 30px;
    font-size: 24px;
    font-weight: 500;
}
.checkbox_wrap > .checkbox+.checkbox{
    margin-top: 20px;
}
.agree_wrap > .checkbox {
    margin-bottom: 20px;
}
.agree_wrap ul li {
    padding: 20px 15px;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    border: 1px solid #dbdbdb;
}
.agree_wrap ul li+li {
    margin-top: -1px;
}
.agree_wrap ul li a {
    color: #999999;
}
