@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: 'Titillium Web', sans-serif;
}
.bglog{
	background-attachment:fixed;
	background-size:cover;
	background-image: url(bg/log.jpg);
	background-repeat: no-repeat;
	overflow: hidden;
}
.bodylog{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	margin: 0;
	top: 0;
	background: rgba(0,0,0,0.8);
}
.logincontent{
	position: relative;
	width: 25%;
	height: auto;
	padding: 1% 1%;
}
.imglogo{
	width: 45%;
	height: auto;
}
.messageblock{
	position: relative;
	width: 100%;
	display: block;
	padding-top: 30px;
}
.logfooter{
	position:fixed;
	width: 100%;
	margin: 0;
	bottom: 0;
}
.aligner{
	padding: 3px 3px;
}

@media screen and (max-width: 769px){
	.logincontent{
		width: 50%;
	}
	.bglog{
		background-image:none;
		background-color: #000000;
	}
}

@media screen and (max-width: 481px){
	.bodylog{
		width: 99%;
		margin:0.5%;
	}
	.logincontent{
		width: 80%;
	}
}