
* {margin: 0; padding: 0;}
* html {height: 1px;}
input:focus { outline: none; }

.slash_text {
    text-align: center;
    width: 10px;
    display: inline-block;
}

/* 로그인 폼 */
#login_wrap {
    position: absolute;
    width: 600px;
    height: 536px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#login_wrap > #login_header {
    margin: 0 auto;
    text-align: center;
    height: 76px;
    line-height: 76px;
}
#login_wrap > #login_header > img {
    vertical-align: middle;
}

#login_wrap > #login_body {
    margin-top: 100px;
    position: relative;
}
#login_wrap > #login_body label {
    width: 100%;
    height: 78px;
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}
#login_wrap > #login_body label > input {
    width: 100%;
    height: 100%;
    position: relative;
    background: #00000000;
    border: 1px solid #DCDCDC;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 25px;
    box-sizing: border-box;
}
#login_wrap > #login_body label > input:focus {
    border: 1px solid #848484;
}
#login_wrap > #login_body label > input:focus + .login_placeholder,
#login_wrap > #login_body label > input:valid + .login_placeholder {
    display: none;
}
#login_wrap > #login_body label .login_placeholder {
    position: absolute;
    display: inline-flex;
    align-items: center;
    color: #b3b3b3;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    font-size: 24px;
}
#login_wrap > #login_body label .login_placeholder > img {
    height: 28px;
    margin-right: 8px;
}
#login_wrap > #login_body button[type=submit] {
    margin-top: 16px;
    width: 100%;
    height: 78px;
    background-color: #cea27b;
    background-image: url('/images/login/btn-login.png');
    border-radius: 10px;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

#login_wrap > #login_footer {
    width: 100%;
    height: 48px;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#login_wrap > #login_footer > div {
    margin-top: 14px;
    font-size: 17px;
    height: 17px;
    line-height: 17px;
}
#login_wrap > #login_footer > div > span {
    color: #b3b3b3;
    margin-right: 17px;
}
#login_wrap > #login_footer > div > a {
    position: relative;
    color: #c09269;
    text-decoration: none;
}
#login_wrap > #login_footer > div > a::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 1px;
    left: 0;
    background-color: #c09269;
}

/* 아이디 패스워드 검색 */
#idpwfind {width: 500px;height: 257px;display: none;background: url('/images/login_idfind.gif');position: relative;border: 5px solid #ccc;}

#idpwfind div.close {position: absolute;right: 17px;top: 20px;cursor: pointer;width: 30px;height: 30px;}

#idpwfind dl {position: absolute;bottom: 8px;left: 150px;width: 330px;font: 12px '돋움';}
#idpwfind dt {float: right;margin: 41px 10px 0 0;_position: absolute;_top: 2px;}
#idpwfind dd {float: left;width: 265px;height: 40px;}
#idpwfind dd input.input {border: 1px solid #ccc;height: 20px;font: 12px '돋움';line-height: 20px;padding: 0 3px;}

#idpwfind ul {position: absolute;top: 69px;left: 12px;list-style: none;}
#idpwfind li {float: left;width: 117px;height: 30px;cursor: pointer;}

/* 아이디 패스워드 결과 */
#result {position: absolute;bottom: 13px;left: 12px;width: 470px;height: 45px;background-color: #fff;border: solid 2px #BBAEDA;text-align: center;padding-top: 35px;display: none;font: 12px '돋움'}
#result span {color: red;font-weight: bold;}