@charset "UTF-8";
*{margin: 0; padding: 0;}
ul,li{list-style: none;}
a{text-decoration: none; color: black;}

#header{
    height: 150px;
}

/* 로그인 화면 */

.login_wrap{
    width: 480px;
    margin: 0 auto;
    font-family: 'Nanum Gothic', sans-serif;
    
}

/* 상위 타이틀 */

.login_wrap h1{
    text-align: center;
    color: rgb(2, 190, 247);
    
}

.login_top{
    width: 250px;
    height: 50px;
    border-top: 1px solid rgb(2, 190, 247);
    border-left: 1px solid rgb(2, 190, 247);
    border-right: 1px solid rgb(2, 190, 247);
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    font-size: 15px;
    line-height: 50px;
    margin-top: 50px;
    font-weight: bold;
    background-color: #fff;
    position: relative;
    z-index: 1;
    top: 1px;
    color: rgb(126, 126, 126);
}

/* 로그인 창 */

.login_contents{
    width: 480px;
    height: 300px;
    border: 1px solid rgb(2, 190, 247);
    border-radius: 0px 10px 10px 10px;
    background-color: #fff;
}

.login_contents p.id,.login_contents p.pwd,.login_contents p.keep,.login_contents p.sub{
    width: 400px;
    margin: 0 auto;
    
}

.login_contents .id{
    width: 400px;
    height: 45px;
    margin: 0 auto;
    margin-top: 30px;
    border: 1px solid rgb(2, 190, 247);
    border-radius: 10px;
    overflow: hidden;
}

.login_contents .pwd{
    width: 400px;
    height: 45px;
    margin: 0 auto;
    margin-top: 10px;
    border: 1px solid rgb(2, 190, 247);
    border-radius: 10px;
    overflow: hidden;
}
.login_contents p.icon_box{
    width: 12%;
    height: 100%;
    float: left;
    padding: 11px;
    color: rgb(2, 190, 247);
    box-sizing: border-box;

}
.login_contents p.icon_box i{
    font-size: 23px;
    text-align:center;
}
.id input,.pwd input{
    float: left;
    width: 75%;
    height: 100%;
    border: none;
    outline: none;
    line-height: 50px;
}
.login_contents input::placeholder{
    color: gainsboro;

   
}
.login_contents p.reset_btn{
    width: 13%;
    height: 100%;
    box-sizing: border-box;
    float: right;
    padding: 5px;
    padding-top:10px;
}
.login_contents button{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background-color: rgb(170, 170, 170);
    color: #fff;
    font-size: 15px;
}

.login_check{
    height:20px;
    box-sizing: border-box;
    padding-top: 10px;

}
.login_contents p.id input.password_form{
    width: 90%;
    height: 100%;
}


/* 로그인 상태 유지 */
.login_contents p.keep{
    color: rgb(177, 177, 177);
    margin-top: 5px;
    font-size: 12px;
}
/* 로그인 버튼 */
.login_contents p.sub{
    margin-top: 50px;
}
/* 비밀번호 찾기/아이디 찾기/회원가입 */
.find{
    width: 280px;
    margin: 0 auto;
    margin-top: 20px;
}

.find>li{
    float: left;
    margin-left: 10px;
    font-size: 13px;
    color: rgb(204, 204, 204);
}

.find>li a{
    color: rgb(189, 189, 189);
    font-weight: bold;
}
#footer{}