@charset "UTF-8";

body {
    height: 100vh;
	text-align: center;
	background-color: #b7aca4;
	background: -webkit-linear-gradient(to bottom right, #efede6, #b7aca4); /* For Safari */
	background: -o-linear-gradient(to bottom right, #efede6, #b7aca4); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(to bottom right, #efede6, #b7aca4); /* For Firefox 3.6 to 15 */
	background: linear-gradient(to bottom right, #efede6, #b7aca4); /* Standard syntax (must be last) */
}
.logo {
	margin: 0;
	margin-bottom: 50px;
}
.logo img {
	width: 60%;
	margin: 0 auto;
}
.loginWrap {	
	width: 550px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 50%;	
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 80px;
	border-radius: 10px;
	box-shadow: 0px 0px 25px 10px rgba(255,255,255,0.2);
}
.loginBox {
	border: 1px solid rgba(255,255,255,0.2);
}
.loginRow {
	text-align: left;
	margin-bottom: 10px;
	display: flex;
}
.loginRow label {
	width: 80px;
	line-height: 45px;
    font-family: 'Gmarket Sans TTF';
	font-weight: bold;
	letter-spacing: -1px;
	font-size: 2rem;
	padding-top: 5px;
}
.loginRow input {
	width: calc(100% - 80px);
	line-height: 45px;
	border: 1px solid #ddd;
    font-family: 'Gmarket Sans TTF';
	font-weight: 500;
	font-size: 2.8rem;
	text-indent: 10px;
	padding-top: 5px;
}
.loginCheck {
	text-align: left;
	margin-top: 20px;
	padding-left: 3px;
}
.loginCheck input[type="checkbox"] {
	opacity: 0;
	filter: alpha(opacity=0); /* For IE8 and earlier */
}
.loginCheck input[type="checkbox"] + label:before {
	width: 28px;
	height: 28px;
	line-height: 28px;
	background-color: #e3e3e3;
	border: 1px solid #e3e3e3;
	content: "";
	display: inline-block;
	font-size: 1.8rem;
	margin: 0px 7px 0 -17px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}
.loginCheck input[type="checkbox"]:focus + label:before {
	border: 1px solid #000;
}
.loginCheck input[type="checkbox"]:checked + label:before {
	content: "\e98b";
	font-family: "font-icons"; 
	color: #121212;
}
.loginCheck input[type="checkbox"] + label {
	margin-bottom: 0;
	text-transform: none;
	letter-spacing: normal;
	color: #343434;
	font-size: 1.4rem;
    font-family: 'Gmarket Sans TTF';
	font-weight: 500;
}

.loginBox a {
	width: 100%;
	line-height: 60px;
	font-size: 2.5rem;
	background-color: #f58220;
	color: #fff;
	margin-top: 30px;
	padding-top: 5px;
	border-radius: 3px;
    font-family: 'Gmarket Sans TTF';
	font-weight: bold;
	display: block;
}

@media (max-width: 679px) {	
	
	.loginWrap {
		width: 80%;
		padding: 60px;
	}
	.loginRow input {
		font-size: 2.6rem;
	}
	.loginCheck {
		padding-left: 2px;
	}

}



@media (max-width: 499px) {	
	
	.loginWrap {	
		width: 84%;
		padding: 40px 30px;
	}
	.logo {
		margin-bottom: 35px;
	}
	.loginRow label {
		width: 50px;
		line-height: 40px;
		font-size: 1.7rem;
	}
	.loginRow input {
		width: calc(100% - 50px);
		line-height: 40px;
		font-size: 2.2rem;
	}
	.loginBox a {
		line-height: 45px;
		font-size: 2rem;
	}

}