@charset "UTF-8";

body
{
	background-image: url(../images/bg_login.jpg) !important;
	background-size: cover !important;
}
#main
{
	background-color: transparent !important;
}
.contents
{
	position: relative;
	top: 20px;
	width: 80%;
	padding: 30px 15px 15px 15px;
	margin: 0px auto;

	/*For Old WebKit*/
	background: -webkit-linear-gradient( top, rgba(16,64,64,0.65) 0%, rgba(84,82,80,0.65) 100% );
	/*For Modern Browser*/
	background: linear-gradient( to bottom, rgba(16,64,64,0.65) 0%, rgba(84,82,80,0.65) 100% );
}
.loginkoei
{
	text-align: right;
}
.tressahd
{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 50px;
}
h1
{
	text-align: center;
	font-size: 20px;
	font-weight: normal;
	line-height: 1;
	margin-bottom: 50px;
}
.errmsgs.active
{
	margin: 20px auto;
	padding: 10px;
	background-color: rgba(255,192,192,0.1);
	color: #FFFF00;
}
.idpass
{
	display: flex;
	width: 100%;
	max-width: 300px;
	margin: 10px auto;
}
.colhd
{
	font-size: 16px;
	width: 30%;
}
.colbd
{
	width: 70%;
}
.colbd input
{
	max-width: 100%;
	background-color: transparent !important;
	border: 1px solid #FFFFFF;
	border-radius: 4px;
	padding: 4px;
	overflow: hidden;
	color: #CCCCCC;
	-webkit-text-fill-color: #CCCCCC;
}
@keyframes onAutoFillStart { from {} to {}}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
{
	animation-name: onAutoFillStart;
	transition: background-color 50000s ease-in-out 0s;
	-webkit-text-fill-color: #FFFFFF;
}
input[type=submit]
{
	display: block;
	background-color: transparent !important;
	border-radius: 4px;
	overflow: hidden;
	padding: 6px 60px;
/*
	border: 1px solid #3BC9FF;
	color: #3BC9FF;
*/
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	margin: 30px auto 90px auto;
}

@media all and (min-width: 768px)
{
	.contents
	{
		top: 20vh;
		width: 60%;
		max-width: 450px;
	}
	.tressahd
	{
		font-size: 20px;
	}
	h1
	{
		font-size: 30px;
	}
}
@media all and (min-width: 992px)
{
	.contents
	{
		width: 40%;
	}
}

