@charset "utf-8";

body{
    height: 100%;
    width: 100%;
    overflow-x: hidden;

}
.login{
    width: 100%;
    height: 100%;
    min-height: 750px;
    min-width: 1200px;
    overflow: hidden;
}
.main{
    background: url(../img/login_bg.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
}
.login_box{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 576px;
    height: 678px;
    transform: translate(-50%,-50%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
    padding: 30px 40px 40px 40px;
}
.login_box h2{
    height: 143px;
    text-align: center;
    background: url(../img/login_logo.png) no-repeat center;
    background-size: contain;
    width: 73%;
    margin: 0 auto;

}
.login_box div{
    color: #646464;
    font-size: 28px;
    text-align: center;
    height: 60px;
    line-height: 60px;
    letter-spacing: 1px;
    margin-top: 20px;
}
.name{
    height: 55px;
    line-height: 35px;
    padding: 10px 25px;
    color: #fff;
    background: #a3a4a5;
    display: inline-block;
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
}
input{
    font-size: 15px;
    color: #646464;
    border: 1px solid #b4b4b4;
}
.id, .password{
    height: 55px;
    width: 100%;
    padding: 10px 25px;
    margin-bottom: 15px;
}

.login_btn{
    width: 100%;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background: #39ae92;
    border: none;
    color:#fff;
    font-size: 28px;
    font-weight: bold;
    margin-top: 71px;
    margin-bottom: 15px;
    margin-right: 0;
    margin-left: 0;
}
.login_btn:hover{
    background: #35a188;
    
}
.chk_wrap{
    width: 19px;
    height: 19px;
    display: inline-block;
    vertical-align: text-bottom;
    position: relative;
    margin: 0 3px;
    left: 0px;
}
.strong{
    width: 103px;
    height: 30px;
    display: inline-block;
    line-height: 30px;
    font-size: 15px;
    font-weight: bold;
    margin-left: -1px;
}
input[name="ch_login"]{
    display: none;
}
input[name="ch_login"]+label{ /*라벨모양*/
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #b4b4b4;
    background: #fff;
    cursor: pointer;
    position: absolute;
    top: 1px;
    left: 0;
}
input[name="ch_login"]:checked+label{/*체크했을 때 모양*/
    background: url(../img/check_on.png)no-repeat center;
    background-size: 18px;
}
.login strong{
    padding-left: 30px;
    width: 300px;
    display: inline-block;
    height: 30px;
    line-height: 30px;
}
.fail{
    color: red;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin-top: -5px;
}
.mar-5{
    margin-bottom: 5px;
}
.mar-61{
    margin-top: 61px;
}
.update_pwd .login_box {
	height: 576px;
}
.update_pwd .login_box div {
	margin-top: 30px;
}
.update_pwd .login_btn {
	margin: 50px auto 0;
}
.match_guide {
	font-size: 15px;
    height: 20px;
}
.match_guide.unmatched {
	color: red;
}
.match_guide.matched {
	color: #35a188;
}