@charset "UTF-8";

/* body */
body {
  font-family: 'Nanum Gothic', sans-serif;
}

/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* login */
.signin {
	padding: 100px 0 150px;
	background-image: url("../images/signin01.jpg");
	background-attachment: fixed;
	background-repeat: no_repeat;
	background-position: center;
	background-size: cover;
}
.signin h1 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 24px;
}
.signin__card {
	width: 500px;
	margin: 0 auto;
	border-radius: 6px;
	background-color: #f6f5f0;
	box-shadow: 2px 2px 20px rbga(0,0,0,.3);
	color: #555;
}
.signin__card h2 {
	padding: 30px;
	color: black;
	font-size: 20px;
	text-align: center;
	border-bottom: 1px solid #ddd;
}
.signin__card .errormsg {
	margin-top: 5px;
	color: red;
	font-size: 12px;
	text-align: center;
	height: 15px;
}
.signin__card form .member_idpw input {
	width: 450px;
	margin-top: 10px;
	margin-left: 25px;
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
	box-sizing: border-box;
	font-size: 16px;
}
.signin__card form .member_type_sel {
	margin-bottom: 12px;
	padding: 10px;
	display: flex;
  justify-content: center;
  font-size: 15px;
}
.signin__card form .member_type_sel .member_type_sel1 {
	padding: 0px 50px;
}
.signin__card form .member_type_sel .member_type_sel2 {
	padding: 0px 50px;
}
.signin__card .actions {
	display: flex;
	border-top: 1px solid #ddd;
}
.signin__card .actions a {
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
	padding: 15px 20px;
	color: #555;
	font-size: 14px;
	border-right: 1px solid #ddd;
	text-decoration: none;
}
.signin__card .actions a:hover {
	text-decoration: underline;
}
.signin__card .action a:last_child {
	border-right: none;
}
.btn.btn--primary {
	color: #fff;
	background-color: #EA9926;
	border: none;
	font-size: 20px;
	height: 45px;
}
.btn.btn--primary:hover {
	background-color: #cc8823;
}
.btn.block {
	width: 100%;
}
