@charset "UTF-8";
/* --------------------------------------------------- LOGIN 페이지 시작--------------------------------------------------- */

/******************************** header ********************************/
html {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: #F5F6F8;
}

input[type="text"],
input[type="password"] {
    margin-bottom: 8px;
    padding-left: 20px;
    box-sizing: border-box;
    width: 400px;
    height: 44px;
    background: #fff;
    border: 1px solid #BEBEBE;
    border-radius: 5px;
    color: #939393;
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover {
    border: 2px solid #222;
}

input[type="text"].small {
    width: 301px;
}
input[type="text"].num {
    width: 95px;
    margin-right: 6px;
}
input[type="text"]:last-child {
    margin-right: 0;
}
input[type="checkbox"] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
button {
    vertical-align: baseline;
}
select {
    width: 120px;
    height: 33px;
    background: #fff;
    border: 1px solid #BEBEBE;
    padding: 0 15px;
    margin-right: 3px;
}
select.num {
    width: 95px
}
select.small {
    width: 118px
}


#join, #login {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0 0;
    overflow: auto;
}

header {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 700px;
    height: 80px;
    margin: 0 auto 50px;
}

header a {
    display: inline-block;
    width: 200px;
    height: 80px;
}

/******************************** login content ********************************/
.content {
    position: relative;
    width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 180px;
}

.content h1 {
    line-height: 1.2;
    font-size: 38px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
}

.content > p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 22px;
    font-weight: 500;
    color: #222;
}

.content > p > span {
    font-weight: 700;
}

.content .login-box {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
/*===================== 버튼 스타일=====================*/
.content button.ty01 {
    margin-top: 10px;
    border-radius: 5px;
    background: #0066B3;
    font-size: 18px;
    color: #FFF;
}
.content button.ty01:hover {
    background: #0074CB;
}
.content button.ty02 {
    background: #F5F6F8;
    border-radius: 5px;
    border: 1px solid #0066B3;
    font-size: 18px;
    color: #0066B3;
}
.content button.ty02:hover {
    background: #C9E8FF;
}
.content button.ty03 {
    margin-top: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.content button.ty04 {
    background: #0066B3;
    font-size: 16px;
    color: #FFF;
}
.content button[disabled] {
    opacity: 0.5;
    background: #7D7D7D;
}

/*===== 버튼 색상====*/
.grey { background: #7D7D7D !important; }

/*===== sns 버튼 스타일 ====*/
.btn-sns01 {
    background: #03C75A;
    color: #FFF;
}

.btn-sns02 {
    background: #FEE500;
    color: #191600;
}

.icon-sns01 {
    margin-right: 5px;
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('../images/icon-sns01.png');
}

.icon-sns02 {
    margin-right: 5px;
    display: inline-block;
    width: 20px;
    height: 18px;
    background: url('../images/icon-sns02.png');
}
/*===== sns 버튼 사이즈====*/
.content button.widthXS {
    width: 80px;
    height: 33px;
}
.content button.widthS {
    width: 120px;
    height: 33px;
}
.content button.widthM {
    width: 245px;
    height: 56px;
}
.content button.widthL {
    width: 400px;
    height: 44px;
}
.content button.widthXL {
    width: 460px;
    height: 44px;
}

.content .sub-button {
    width: 400px;
    display: flex;
    margin: 10px auto 0;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #7D7D7D;
}
.content .sub-button {
    font-size: 15px;
    font-weight: 400;
    color: #7D7D7D;
}
.content .sub-button ul {
    display: flex;
}
.content .sub-button ul li {
    font-size: 14px;
    font-weight: 400;
    color: #7D7D7D;
}
.content .sub-button ul li:nth-child(2) {
    margin: 0 10px;
    font-size: 12px;
    color: #bababa;
}
.content .btn-join-wrap {
    margin-top: 40px;
    width: 400px;
    border-top: 1px solid #d5d5d5;
    text-align: left;
}

.content .btn-join-wrap h2 {
    margin: 25px 0 10px;
    font-weight: 700;
}

.content .btn-join-wrap p {
    margin-bottom: 10px;
    color: #7D7D7D;
    font-size: 14px;
    font-weight: 400;
}
/******************************** join content ********************************/
#join .content {
    position: relative;
    width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 180px;
}

#join .content h2 {
    margin-bottom: 10px;
    line-height: 1.2;
    font-size: 25px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
}

#join .content h2 span {
    color: #0066B3;
}

/*===== 가입 리스트 박스 스타일====*/
.form-list {
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
}

.form-list::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    border: 1px solid #dfdfdf;
    pointer-events: none;
    content: '';
}

.form-list .form-item {
    position: relative;
    padding: 10px 20px;
    width: 100%;
    background: #fff; 
}

.form-item:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    border: 1px solid #dfdfdf;
    border-top: none;
    pointer-events: none;
    content: '';
}

.form-list .form-item.sns {
    padding: 20px 20px 30px;
}

.form-list .form-item.tit-sms {
    display: flex;
    align-items: end;
}

.form-list .form-item.tit-sms p {
    margin: 0 0 0 5px;
    color: #0066B3;
    font-weight: 500;
}

.form-list .form-item.sms {
    display: flex;
    align-items: center;
    padding: 20px;
}


.form-list .form-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.form-list .form-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.form-item h3 {
    font-size: 18px;
    font-weight: 600;
}

.form-item .input {
    margin: 0 10px 0 0;
    padding: 8px 10px;
    width: 280px;
    height: 33px;
    border: 1px solid #BEBEBE;
    border-radius: 0;
    font-size: 14px;
}

.form-item .input2 {
    margin: 0 10px 0 0;
    padding: 8px 10px;
    width: 79.6%;
    height: 33px;
    border: 1px solid #fff;
    border-radius: 0;
    font-size: 14px;
}

.form-item .email-wrap {
    display: flex;
    align-items: center;
}

.form-item p {
    margin: 10px 0;
}

.form-item .email {
    margin: 0 5px 0 0;
    padding: 8px 10px;
    width: 80px;
    height: 33px;
    border: 1px solid #BEBEBE;
    border-radius: 0;
    font-size: 14px;
}

.form-item .email2 {
    margin: 0 5px;
    padding: 8px 10px;
    width: 120px;
    height: 33px;
    border: 1px solid #BEBEBE;
    border-radius: 0;
    font-size: 14px;
}

.txt-blue {color: #0091ff;}

/*===== 가입 리스트 박스 아이콘====*/
.icon-sms {
    display: inline-block;
    width: 40px;
    height: 30px;
    background: url('../images/icon-phone.png') no-repeat 30% center;
}
.icon-lock {
    display: inline-block;
    width: 40px;
    height: 30px;
    background: url('../images/icon-lock.png') no-repeat 30% center;
}
.icon-mail {
    display: inline-block;
    width: 40px;
    height: 30px;
    background: url('../images/icon-mail.png') no-repeat 30% center;
}

.form-item.join-twrap {
    padding: 22px 20px;
    display: flex;
}

.form-item.join-twrap h3 {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #222;
    font-weight: 700;
}

.form-item.join-twrap h3 > a {
    margin-left: 10px;
}

/*===== 동의 체크박스 스타일 ====*/
.ck-agree {
    position:absolute;
    top:20px; 
    right:20px;
 }
.ck-agree input[type="checkbox"] { display:none; }
.ck-agree input[type="checkbox"] + label {
    display:inline-block;
    width:30px;
    height:30px;
    background:url("../images/check_agree.png") no-repeat;
    cursor:pointer;
}
.ck-agree div.all-agree:after { 
    display:block;
    clear:both;
    content:"";
}

.ck-agree input[type="checkbox"]:checked + label { 
    background:url("../images/check_agree_on.png") no-repeat;
}
.ck-agree label span { 
    position:absolute;
    display:block;
    width:100%;
    text-align:center;
    top:-10000px;
    left:0px;
    z-index:999;
}

/*===== 가입 완료====*/
.form-list .form-item.ok {
    padding: 60px 20px;
    text-align: center;
}

.form-list .form-item.ok h3 {
    background: url('../images/img-joinok.png') center 0px no-repeat;
    padding: 100px 0px 15px;
    font-size: 28px;
    font-weight: 600;
}

.form-list .form-item.ok h3 > span {
    color: #0066B3;
}

.form-list .form-item.ok p {
    font-size: 16px;
    color:#7D7D7D;
    line-height: 1.4;
}

.joinok-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/**************** footer ****************/
footer {
    /*position: absolute;
    bottom: 0;*/
    width: 100%;
    border-top: 1px solid #d5d5d5;
}

footer .footer-inbox {
    width: 700px;
    margin: 15px auto 15px;
    box-sizing: border-box;
}
footer .footer-inbox .footer-custom {
    display: flex;
    justify-content: space-between;
}

footer .footer-inbox .footer-custom ul {
    font-size: 13px;
    color: #7D7D7D;
}

footer .footer-inbox .footer-custom ul li {
    letter-spacing: 0px;
}

footer .footer-inbox .footer-custom ul li:nth-child(1) {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

footer .footer-inbox .footer-custom ul li:nth-child(1) strong {
    font-weight: 800;
}

footer .footer-inbox .footer-custom p a {
    margin-top: 5px;
    margin-left: 5px;
}

footer .footer-inbox .copyright p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    color: #939393;
}
