@charset "UTF-8";

/* LOGIN SETTING */
#new_login {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 100px;
}

#new_login .login_area {
    width: 100%;
    height: auto;
    position: relative;
}

#new_login .login_con {
    width: 100%;
    height: auto;
    position: relative;
}

/* LOGIN SETTING END */

/* LOGIN BOX */
#new_login .login_box {
    width: 400px;
    height: auto;
    position: relative;
    background-color: #212121;
    margin: 0 auto;
    padding: 30px 15px;
}

#new_login .login_box .login_logo {
    width: 171px;
    height: 93px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px;
}

#new_login .login_box .login_logo > a {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/assets/Pc/img/hd_logo.png?ver=20240910);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

#new_login .login_box .login_inputcon {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
}

#new_login .login_box .login_inputcon .input_box {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 10px;
}

#new_login .login_box .login_option {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #000;
    border: 1px solid #313437;
    padding: 10px;
}

#new_login .login_box .login_option .login_optionbox {
    width: 100%;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
}

#new_login .login_box .login_option .login_optionbox > li {
    width: auto;
    height: auto;
    position: relative;
}

#new_login .login_box .login_option .login_optionbox > li::after {
    content: '';
    width: 1px;
    height: 10px;
    background-color: #4b505a;
    position: absolute;
    top: 50%;
    right: -15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

#new_login .login_box .login_option .login_optionbox > li:last-of-type::after {
    content: none;
}

#new_login .login_box .login_option .login_optionbox > li > a {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
}

#new_login .login_box .login_option .login_optionbox > li > a:hover {
    color: #367af4;
}

/* 보안설정 추가 2024.07 */
#new_login .content {
    color: #ccc;
    padding: 5px;
}

/* LOGIN BOX END */

/* PASSWORD MODAL */
.password_modal_wrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 99;
}

.password_modal_wrap .password_modalcon {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.password_modal_wrap .password_modalbox {
    width: 600px;
    height: auto;
    position: relative;
    background-color: #212121;
    padding: 30px;
}

.password_modal_wrap .password_modalbox > h2 {
    text-align: center;
    font-size: 1.625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.password_modal_wrap .password_modalbox .password_stat {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px;
    background-color: #000;
    border: 1px solid #4b505a;
}

.password_modal_wrap .password_modalbox .password_stat > p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.password_modal_wrap .password_modalbox .password_stat .stat_telme {
    width: auto;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.password_modal_wrap .password_modalbox .password_stat .stat_telme > a {
    display: block;
    width: auto;
    height: auto;
    color: #fff;
    background-color: #2253a2;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 5px;
}

.password_modal_wrap .password_modalbox .modal_close {
    width: 100px;
    height: 30px;
    position: relative;
    margin: 0 auto;
    margin-top: 30px;
}

.password_modal_wrap .password_modalbox .modal_close > a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #f5ea51;
    border-radius: 5px;
    color: #000;
    font-weight: 700;
    font-size: 0.9375rem;
    line-height: 30px;
}

/* PASSWORD MODAL END */

/* JOIN */
.join_con {
    width: 100%;
    height: auto;
    position: relative;
}

.join_con .join_logo {
    width: 220px;
    height: 93px;
    background-image: url(/assets/Pc/img/hd_logo.png?ver=20240910);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    margin: 0 auto;
    margin-bottom: 30px;
}

.join_con .join_form {
    width: 465px;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.join_con .join_form .join_box {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #020409;
    border: 1px solid #233956;
}

.join_con .join_form .join_item {
    width: 100%;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #233956;
}

.join_con .join_form .join_item:last-of-type {
    border-bottom: 0;
}

.join_con .join_form .join_item .join_input_box {
    width: 395px;
    height: auto;
    position: relative;
    border-right: 1px solid #233956;
    padding: 20px;
}

.join_con .join_form .join_item .join_input_box > p {
    font-size: 0.875rem;
    font-weight: 300;
    margin-top: 10px;
    color: #ff0000;
}

.join_con .join_form .join_item .join_check {
    width: -webkit-calc(100% - 395px);
    width: -moz-calc(100% - 395px);
    width: calc(100% - 395px);
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.join_con .join_form .join_item .join_check > span {
    width: 40px;
    height: 40px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

.join_con .join_form .join_item .join_check > span.check_icon_01 {
    background-image: url(/assets/Pc/img/join_icon_01.png);
}

.join_con .join_form .join_item .join_check > span.check_icon_02 {
    background-image: url(/assets/Pc/img/join_icon_02.png);
}

.join_con .join_form .join_item .join_check > span.check_icon_03 {
    background-image: url(/assets/Pc/img/join_icon_03.png);
}

/* JOIN END */

/* JOIN RESULT */
.join_result {
    width: 465px;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.join_result .join_resultbox {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #1b1b1b;
    border: 1px solid #565a5e;
    padding: 20px;
}

.join_result .join_resultbox .result_info {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid #565a5e;
    margin-bottom: 20px;
}

.join_result .join_resultbox .result_info > li {
    width: 100%;
    height: auto;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.join_result .join_resultbox .result_info > li:last-of-type {
    margin-bottom: 0;
}

.join_result .join_resultbox .result_info > li > span {
    color: #f5ea51;
    font-weight: 600;
}

.join_result .join_resultbox .result_txt {
    width: 100%;
    height: auto;
    position: relative;
    text-align: center;
}

.join_result .join_resultbox .result_txt > h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
}

.join_result .join_resultbox .result_txt .result_txtbox {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
}

.join_result .join_resultbox .result_txt .result_txtbox:last-of-type {
    margin-bottom: 0;
}

.join_result .join_resultbox .result_txt .result_txtbox > h4 {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.join_result .join_resultbox .result_txt .result_txtbox > p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: #ccc;
    line-height: 22px;
    word-break: keep-all;
}


.button31 {
    width: 60px;
    height:40px;
	border-radius: 10%;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(90, 144, 247, 1)), to(rgba(31, 75, 238, 1)));
    background: -webkit-linear-gradient(top, rgba(90, 144, 247, 1) 0%, rgba(31, 75, 238, 1) 100%);
    background: -moz-linear-gradient(top, rgba(90, 144, 247, 1) 0%, rgba(31, 75, 238, 1) 100%);
    background: -o-linear-gradient(top, rgba(90, 144, 247, 1) 0%, rgba(31, 75, 238, 1) 100%);
    background: linear-gradient(180deg, rgba(90, 144, 247, 1) 0%, rgba(31, 75, 238, 1) 100%);
    border: 0;
}

/* JOIN RESULT END */
