@charset "utf-8";

.register .list-group-item {
	padding-left:0;
	padding-right:0;
	border-left:0;
	border-right:0;
}
@media all and (max-width:575px) {
	.register .list-group-item {
		padding-left:1.0rem;
		padding-right:1.0rem;
	}
}



#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;
    border-radius: 5px;    flex-direction: column;
}

#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(/img/hd_logo.png);
    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: #404243;
    border: 1px solid #313437;
    padding: 10px;
    border-radius: 5px;
}

#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;
}

#new_login .login_input {
    width: 100%;
    height: 60px;
    position: relative;
    margin-bottom: 10px;
}
#new_login .login_button {
    width: 100%;
    height: 50px;
    position: relative;
    margin-bottom: 15px;
}
#new_login .login_input > input {
    width: 100%;
    height: 100%;
    background-color: #404243;
    border: 1px solid #313437;
    padding: 0 15px;
    border-radius: 5px;
	color: #fff;
}
#new_login .login_button > button {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #5146C6;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    border-radius: 5px;
}