@charset "utf-8";

/*=================================================
 레이아웃
=================================================*/
p, a, a:link, a:visited, a:hover, a:active{
	color: #000000;
	text-decoration: none;
}
a:hover{
	color: blue;
	text-decoration: none;
}

#CONTAINER_LOGIN {
  width: 400px;    /* 너비 지정 */
  margin: 0 auto;
  overflow: hidden;
  height:auto;
  background-color: #FFFFFF;
  /*border: 1px solid red;*/
}

#LOGIN_Logo {
  width: 95%;
  padding-top: 80px;
  text-align: center;
  /*border: 1px solid #000;*/
}

#LOGIN_Form {
  padding: 25px;
  margin: 10px;
  width: 95%;  
  overflow: hidden;
  height:auto;
  border:2px solid #aaa;
	box-shadow:0 0 8px 0 dodgerBlue;	  
}

#LOGIN_Title {
  width: 100%;
  height: 60px;
  font-size: 24px;
	font-weight: bold;
	color: #000000;
	text-decoration:none;
	text-shadow:2px 2px 2px #AAAAAA;
  /*border: 1px solid #000;*/
}
#LOGIN_Title > span {
  font-size: 16px;
	font-weight: bold;
	color: #000000;
  text-shadow:none;
}

#LOGIN_Input {
  width: 100%;
  font-size: 15px;
	font-weight: bold;
	color: #000000;
  /*border: 1px solid #000;*/
}

#LOGIN_Input > p {
  width: 100%;
  padding-top: 20px;
}

input[type='password'] {
  width: 90%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#LOGIN_Menu{
  float: left;
  width: 40%;
	margin-top: 25px;
	margin-bottom: 10px;
	color: #000000;
	font-weight: bold;
  /*border: 1px solid #000;*/
}

#LOGIN_Button {
  float: right;
  width: 40%;
	margin-top: 25px;
	margin-bottom: 10px;
  padding-right: 10px;
  text-align: right;
  /*border: 1px solid #000;*/
}

#svrTime {
  width: 100%;
  text-align: center;
  /*border: 1px solid #000;*/
}

#findResult {
	padding: 25px;	
	margin: 10px;
	margin-top: 20px;
	width: 95%;
	text-align: center;
	overflow: hidden;
	height:auto;
	border:2px solid #aaa;
	box-shadow:0 0 8px 0 dodgerBlue;	  
}

/*=================================================
 Class
=================================================*/
.loginFormText[type=text], .loginFormText[type=password] {
	font-size: 15pt;
	border:2px solid #aaa;
	border-radius:4px;
	margin:5px;
	outline:none;
	padding:8px;
	box-sizing:content-box;
	transition:.3s;
}
.loginFormText[type=text]:focus, .loginFormText[type=password]:focus{
	border-color:dodgerBlue;
	box-shadow:0 0 8px 0 dodgerBlue;
}

.loginFormButton {
	-moz-box-shadow: 0px 10px 14px -7px #276873;
	-webkit-box-shadow: 0px 10px 14px -7px #276873;
	box-shadow: 0px 10px 14px -7px #276873;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #599bb3), color-stop(1, #408c99));
	background:-moz-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-webkit-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-o-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:-ms-linear-gradient(top, #599bb3 5%, #408c99 100%);
	background:linear-gradient(to bottom, #599bb3 5%, #408c99 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#599bb3', endColorstr='#408c99',GradientType=0);
	background-color:#599bb3;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:18px;
	font-weight:bold;
	padding:10px 30px;
	text-decoration:none;
	text-shadow:0px 1px 0px #3d768a;
}

.loginformButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #408c99), color-stop(1, #599bb3));
	background:-moz-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-webkit-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-o-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:-ms-linear-gradient(top, #408c99 5%, #599bb3 100%);
	background:linear-gradient(to bottom, #408c99 5%, #599bb3 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#408c99', endColorstr='#599bb3',GradientType=0);
	background-color:#408c99;
}

.loginFormButton:active {
	position:relative;
	top:1px;
}

.loginFormSelect {
  height: 35px;
	outline:none;
  padding-left: 10px;
	padding-right: 10px;
	margin:5px;
  font-size: 16px;
  border:2px solid #aaa;
	border-radius:4px;
	box-sizing:content-box;
}

