@charset "utf-8";

/* Font Import */
@import url('http://fonts.googleapis.com/earlyaccess/nanumgothic.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* reset */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {margin:0; padding:0;}

/* html5 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}



body {font-size: 100%;font-family:'Noto Sans KR', 'Nanum Gothic','NanumGothic','Malgun Gothic','돋움','dotum','AppleGothic','Apple SD Gothic Neo Medium',Helvetica,Arial,Sans-Serif; line-height: 1.5;font-weight:normal;font-style:normal;background:#fff;color:#8b8b8b;}




.bk_box {
    display: table;
    position: relative;
    width: 100%;
    height: 100vh;
    background: #f4f6fc;
} 
.login_cell {
    display: table-cell;
    vertical-align: middle;
}
.login_wrap {
    position: relative;
    margin: 0 auto;
    height: 100%;
}
.login_wrap::after {
    display: block;
    clear: both;
    content: '';
}
.login_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    width: 50%;
    height: 100%;
    background: url(/Images/bg.jpg) center center no-repeat;
    background-size: cover;
}
.login_logo .img {
  display: block;
  width: 200px;
  text-align: center;
  vertical-align: middle;
}

.login_form {
    display: table;
    float: left;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 0 20px 20px 0;
}
.login_form form {
    display: table-cell;
    vertical-align: middle;
}
.login_box {
    width: 304px;
    margin: 0 auto;
}
.login_box h2 {
    width: 160px;
    margin: 0 auto 30px;
    font-size: 22px;
    font-weight: 500;
    color: #252525;
    text-align: center;
}
.login_box h2 img {
    width: 100%;
}
.login_box h4 {
  font-weight: 400;
}
.login_box input {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    height: 48px;
    border: 1px solid #dbdbdb;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 400;
    color: #252525;
    border-radius: 8px;
    box-sizing: border-box;
}
.login_box input::placeholder {
    color: #bbbbbb;
}
.login_box .save_id input {
    display: none;
}
.login_box .save_id input + label {
    display: block;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 400;
    color: #757575;
    background-position: left center;
    background-repeat: no-repeat;
    background-image: url(../../_images/login/checkbox.png);
}
.login_box .save_id input:checked + label {
    background-image: url(../../_images/login/checkbox_on.png);
}
.login_box .login_btn {
    display: block;
    width: 100%;
    height: 48px;
    margin: 60px auto 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 48px;
    background: #002b64;
    border-radius: 8px;
    text-decoration: none;
}
.login_wrap .copy {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #454545;
}
