@import url("webfont.css");
*{
	font-family: "Spoqa Han Sans Neo";
	letter-spacing: -0.03em;
}
body {
	width: 100vw; height: 100vh;
	margin: 0; padding: 0;
	background: url("../background/login.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
input {
	caret-color: rgba(0,105,248,0.50);
}
input:focus {
	outline: none;
}
a {
	text-decoration: none;
}
.login {
	position: absolute;
	margin-top: -35px; margin-left: 20px;
	font-size: 16px; font-weight: 800;
	color: darkgray;
}
.gs_Login_box{
    position: absolute;
    left: 50%; top: 50%;
	height: 560px;
    transform: translate(-50%, -50%);
	border-radius: 10px;
	box-shadow: 0 10px 80px -10px rgba(0,0,0,0.3);
	overflow: hidden;
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.logo {
	position: absolute;
	margin: 30px;
	width: 180px;
	z-index: 10;
}
.LogoPage {
	width: 360px;
	background: url("../background/logoback.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
.LoginPage {
	width: 320px;
	padding: 40px 70px;
	background: rgba(255,255,255,1.00);
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.LoginTitle {
	font-size: 24px; font-weight: 600;
}
.LoginsubTitle {
	font-size: 14px; font-weight: 400;
	color: darkgrey;
}
.LoginInput {
	margin-top: -20px;
}
.LoginInput button {
	width: 100%;
	padding: 10px;
	margin-top: 20px;
	color: white;
	cursor: pointer;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 2px 6px -1px rgba(0,0,0,0.3);
	background: linear-gradient(180deg, #4182E7, #004CFF);
}
.input-block {
	width: 100%;
	padding: 16px 0;
	font-size: 16px;
	color: rgba(0,105,248,1.00);
	text-align:center; 
	border: 0;
}
.inp1 {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border: 1px solid #eaeaea;
}
.inp2 {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-left: 1px solid #eaeaea;
	border-right: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}
.input-block:focus {
	box-shadow: 0 1px 12px -6px rgba(0,0,0,0.3) inset;
}
.footer {
	font-size: 11px; font-weight: 300;
	letter-spacing: 0.03em;
	color: darkgrey;
	display: flex;
	justify-content: space-around;
}
.footer a {
	font-weight: 500;
	color: mediumblue;
}
.footer a:hover {
	color: darkorchid;
}