@charset "UTF-8";
/* CSS Document */

/* 2017.09.11 */


/* Login Style */








/* =================================================
Login Style
==================================================== */
body {
	background-image: url(../images/img_pattern_stripe.png);
}


#loginWp { width:562px; margin:100px auto 0; }

#loginWp > img { margin:0; }

#loginWp #loginPanel {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background:#2f6da5;
	text-align:center;
	box-shadow: 0px 5px 7px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0px 5px 7px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 5px 7px rgba(0,0,0,0.4);
}

#loginWp #loginPanel #inputBox {
	background:#f2f2f2;
	
	-webkit-border-radius: 10px 10px 0 0 ;
	-moz-border-radius: 10px 10px 0 0 ;
	border-radius: 10px 10px 0 0 ;
	/*
	-webkit-border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	-moz-border-radius-topleft:10px;
	-moz-border-radius-topright:10px;
	*/
	box-shadow: 0px 5px 4px -4px rgba(0,0,0,0.6);
	-webkit-box-shadow: 0px 5px 4px -4px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 5px 4px -4px rgba(0,0,0,0.6);
	
	padding:50px 0 35px;
}

#loginWp #loginPanel #inputBox #userNameBox,
#loginWp #loginPanel #inputBox #passwordBox {
	width:301px;
	height:44px;
	padding:0 0 0 44px;
	margin:0 auto 15px;
}

#loginWp #loginPanel #inputBox #userNameBox { background:url(../images/login/login_icon_man.gif) no-repeat left top; }
#loginWp #loginPanel #inputBox #passwordBox { background:url(../images/login/login_icon_key.gif) no-repeat left top; }

#loginWp #loginPanel #inputBox #userNameBox input[type="text"],
#loginWp #loginPanel #inputBox #passwordBox input[type="password"],
#loginWp #loginPanel #inputBox #passwordBox input[type="text"] {
	width:257px;
	height:44px;
	margin:0;
	padding:5px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	box-shadow: none;
	border:none;
}

#loginWp #loginPanel input[type="submit"] {
	width:300px;
	height:45px;
	margin:15px 0;
	background:url(../images/login/btn_bg_blue.gif);
	border:none;
	color:#FFF;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#loginWp > p {
	text-align:center;
	font-size:0.7em;
	color:#989dac;
	margin-top:50px;
}


#passwordBox{ position: relative; display: inline-block; }
#passwordBox input[type="password"] { padding-right: 30px; }
#passwordBox input[type="checkbox"] { opacity : 0; }
#passwordBox input[type="checkbox"] + label {
	background: url(../images/login/icon_show_pass.gif) 0 0;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 8px;
	top: 13px;
	cursor: pointer;  
}
#passwordBox input[type="checkbox"]:checked + label { background-position:0 -18px; }

::-ms-clear {display: none;}
::-ms-reveal {display: none;}

.errorBox{
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 1px 1px #444;
    padding: 10px;
    text-align: center;
    color: #696969;
    margin: 0px auto;
    width: 70%;
    font-size: 14px;
    line-height:22px;
}
.errorBox p{
	line-height:20px;
}
.alertBox{
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 1px 1px #444;
    padding: 20px;
    text-align: center;
    color: #696969;
    margin: 0px auto;
    width: 70%;
    font-size: 16px;
    line-height:22px;
}

/* login/confirm */
.btn-m{
	background-color: #f3f3f3;
	border-radius: 3px;
	display: block;
	width: 200px;
	color: #696969;
	padding: 10px 10px;
	text-decoration: none;
	cursor: pointer;
	margin-top: 15px;
}