/***************************************************************************************
 * FileName      : login.css
 * Description   : 로그인 페이지 스타일
 * Company       : (주)한국공학기술연구원
 * Author        : 
 * Created Date  : 
 * Modifide Date :
 * Reference     :
 ***************************************************************************************/

@charset "UTF-8";

@font-face {
    font-family: "Noto Sans KR";
    src: url("fonts/NotoSansKR-Medium.ttf") format("truetype");
}

/* 로그인 배경 */
.login_wrap {
    width: 100%;
    height: 100%;
    min-height: 200px;
    /* background: url("../images/common/bg_login.jpg") repeat-x left top; */
    /* background: #6c757d; */
}
.login_wrap h1 {
    position: relative;
    width: 500px;
    height: 100px;
    padding: 30px 0;
    line-height: 40px;
    font-size: 2.3rem;
    color: #fff;
    margin: 0 auto;
    text-align: center;
}
.login_wrap h1 a {
    position: absolute;
    top: 40px;
    left: 0;
    display: block;
    overflow: hidden;
}
.login_box {
    width: 800px;
    /* overflow: hidden; */
    background-color: #fff;
    padding: 60px;
    padding-left: 10px;
    border-radius: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    margin: 100px auto;
    left: 50%;
    transform: translate(-50%, 20%);
}
.login_copyright {
    /* width: 800px; */
    color: #fff;
    font-size: 14px;
    padding: 10px;
    position: fixed;
    bottom: -5%;
    left: 50%;
    transform: translate(-50%, 20%);
}
.notice {
    text-align: center;
    font-size: 10pt;
    margin-top: 10px;
    color: gray;
    padding-left: 10px;
}
.login_tab {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 5px;
}
.login_form {
    margin: 0;
    width: 100%;
}
.login_form > p {
    font-size: 0.9rem;
}
.register_form {
    margin: 0;
    width: 100%;
}
.login_tab fieldset {
    position: relative;
    /* padding-right: 138px; */
}
.login_tab dl dt {
    position: absolute;
    left: -10000000em;
    top: -10000000em;
}
.login_tab dl dd {
    margin-top: 5px;
}
.login_tab dl dd input {
    /* width: 350px; */
    height: 48px;
    padding: 0 0 0 40px;
    line-height: 48px;
}
.login_tab dl dd.login_id input {
    background: url("../images/common/ico_login_id.gif") no-repeat 10px center;
    background-color: #f4f5f9;
    font-size: 12pt;
}
.login_tab dl dd.login_pw input {
    background: url("../images/common/ico_login_pw.gif") no-repeat 10px center;
    background-color: #f4f5f9;
    font-size: 12pt;
}
/* 로그인 페이지 버튼 */
.login_tab .btn_login {
    right: 0;
    top: 5px;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 1rem;
    color: #fff;
    background-color: #006eba;
    text-align: center;
    border-radius: 5px;
    border: none;
    text-align: center;
}
.login_tab .login_txt {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}
.login_tab .login_txt::after {
    display: block;
    clear: both;
    content: "";
}
.login_tab .login_txt p {
    float: left;
}
.login_tab .login_txt .btn_find {
    display: inline-block;
    float: right;
    text-align: center;
    border: 1px solid #dbdbdb;
    background-color: #f7f7f7;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    font-size: 0.9rem;
    width: 40%;
}
.login_tab .on {
    display: block;
}
img.logo_register {
    max-width: 20%;
}
.register_form fieldset {
    position: relative;
    padding-right: 0;
}
.register_form dl dt {
    position: static;
    display: inline-block;
    width: 120px;
    vertical-align: top;
}
.register_form dl dd {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 10px;
    width: calc(100% - 130px);
    color: #666;
    min-height: 30px;
}
.register_form dl dd input {
    height: 40px;
    padding: 0 0 0 10px;
    line-height: 40px;
    width: 396px;
}
/* 회원가입 페이지 버튼 */
.register_tab .btn_register {
    right: 0;
    top: 5px;
    display: block;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 1rem;
    color: #fff;
    background-color: #27824f;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
    border: none;
}
/* 2021.04.29 : KEH : 회원가입 페이지 */
.register_box {
    width: 800px;
    /* overflow: hidden; */
    background-color: #fff;
    padding: 60px;
    border-radius: 20px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    margin: 100px auto;
    left: 50%;
    transform: translate(-50%, 0%);
}
.register_form_dd dl .input_all {
    width: calc(96% - 130px);
}
.register_form_dd dl dd {
    width: calc(48% - 130px);
    margin-right: 2%;
}
/* 2020.12.02 : KEH : 회원가입 정보 변경 */
.register_subject {
    border-top: 4px solid #9c9c9c;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 5px;
    width: 100%;
    background: #f1f1f1;
    margin-bottom: 10px;
}
.register_form dl dd select {
    height: 40px;
    padding: 0 0 0 10px;
    line-height: 40px;
    width: 396px;
    border: 1px solid #cccccc;
}
/* 2021.04.29 : KEH : 회원가입 페이지 */
.register_tab fieldset {
    position: relative;
    padding-right: 10px;
}
.register_tab dl dt {
    position: static;
    left: -10000000em;
    top: -10000000em;
}
.register_tab dl dd {
    margin-top: 5px;
}
.register_tab dl dd input {
    width: 100%;
    height: 48px;
    line-height: 48px;
}
.register_tab .btn_login {
    position: absolute;
    right: 0;
    top: 5px;
    display: block;
    width: 130px;
    height: 100px;
    line-height: 100px;
    font-size: 1.3rem;
    color: #fff;
    background-color: #266ed4;
    text-align: center;
}
.register_tab .login_txt {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
}
.register_tab .login_txt::after {
    display: block;
    clear: both;
    content: "";
}
.register_tab .login_txt p {
    float: left;
}
.register_tab .login_txt .btn_find {
    display: inline-block;
    float: right;
    text-align: center;
    border: 1px solid #dbdbdb;
    background-color: #f7f7f7;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    font-size: 0.9rem;
}
.register_tab .on {
    display: block;
}
.register_form_dd dl dd select {
    width: 100%;
}

/* 텍스트 */
.txt1 {
    font-size: 2rem;
    line-height: 1.4;
    color: #333;
}
.txt1 span {
    font-weight: 500;
}
.txt2 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 20px;
    color: #555;
    word-break: keep-all;
}
.txt3 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 10px;
}
.txt4 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: 10px;
}

/********** Media quary **********/
@media screen and (max-width: 1019px) {
    .txt3 {
        font-size: 0.8rem;
    }

    .login_wrap {
        min-height: 0px;
    }

    .login_copyright {
        left: 0%;
        transform: translate(0%, 20%);
    }

    .login_wrap h1 {
        position: relative;
        width: 170px;
        /* height: 44px;
        padding: 40px 0 40px 130px; */
        line-height: 40px;
        font-size: 1.1rem;
        color: #fff;
        margin: 0 auto;
        text-align: center;
    }
    .login_wrap h1 a {
        top: 45px;
    }
    .login_wrap h1 a img {
        width: 120px;
    }
    .login_box {
        width: 95%;
        height: auto;
        padding: 60px;
        /* padding-left: 10px; */
        margin-top: 0px;
        margin-bottom: 30px;
        transform: translate(-50%, 5%);
    }
    .login_tab fieldset {
        padding-right: 0;
    }
    .login_form dl dd input {
        width: 100%;
        height: 48px;
        padding: 0 0 0 40px;
        line-height: 48px;
    }
    .login_tab .login_txt {
        font-size: 0.8rem;
    }
    .tab_sty li a {
        padding: 15px 20px;
    }
    .login_tab .btn_login {
        position: static;
        display: block;
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size: 1rem;
        color: #fff;
        text-align: center;
        margin-top: 10px;
    }
    .login_tab .login_txt .btn_find {
        font-size: 0.8rem;
    }
    .register_form dl dt {
        font-size: 0.9rem;
    }
    .register_form dl dd {
        display: block;
        width: 100%;
    }
    .register_form dl dd input {
        width: 100%;
    }
    .btn_register {
        font-size: 0.9rem;
    }
    /* 2021.04.29 : KEH : 회원가입 페이지 */
    .register_box {
        width: 95%;
        height: auto;
        padding: 25px;
        margin-top: 0px;
        margin-bottom: 30px;
        transform: translate(-50%, 5%);
    }
    .register_form_dd dl .input_all {
        width: 100%;
    }
    img.login_img {
        max-width: 60%;
        margin-top: 0px;
        /* display: block; */
    }
    img.logo {
        max-width: 80%;
        margin: auto;
        display: block;
    }
    img.logo_register {
        max-width: 40%;
    }
}
/********** Media quary MD **********/
@media screen and (max-width: 768px) {
    img.login_img {
        max-width: 50%;
    }

    .login_copyright {
        font-size: 12px;
        bottom: -3%;
    }
}

/* 로그인 페이지 로고 */
.login_img {
    width: 70%;
    height: auto;
    /* margin-top: 50px; */
}

/* 안내문구 창 */
.alert-danger {
    color: #ff634e;
    background: #fffaf9;
    border-color: #ff634e;
}

.login_check_message {
    font-size: 0.9rem;
    color: #FF8373;
    text-align: left;
    display:block;
}