@CHARSET "UTF-8";

body.page-login,
body.page-doLogin,
body.page-Logout {
	overflow: hidden;
}

.login-form .control-label {
	font-size: 20px;
}

.login-form .form-control {
	font-size: 20px;
	height: 40px;
}

.login-form .form-control[type=checkbox] {
	width: 38px;
}

.login-form .login {
	font-size: 20px;
}

.container {
	position: absolute;
	left: 50%;
	top: 0px;
	bottom: 0px;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	max-width: 320px;
}
.login-warning-area{
	position: absolute;
	left: 5px;
	width: 312px;
}
.login-warning{
	margin: 0px;
}
.login-panel{
	background-color: #0B846F;
	height: 100%;
	width: 100%;
	max-height: 500px;
	min-height: 400px;
	border-radius: 16px;
	position: absolute;
	top: 50%;
    transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
}

#loginLogo{
	margin-top: 24px;
	margin-bottom: 27px;
}
#loginLogo img{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit- transform: translateX(-50%);
}
.row-spacer0{
	padding-top: 30px;
}
.row-spacer1 {
	padding-top: 37px;
}
.row-spacer2 {
	padding-top: 14px;
}
#seitoNoLabel, #passwordLabel {
	font-size: 16px;
	font-weight: bold;
	color: white;
	margin-bottom: .2rem;
}
#kjoAccount, #kjoPw {
	display: inline-block;
	border-radius: unset;
	height: 45px;
}
#kjoAccount:focus, #kjoPw:focus{
	border: none;
	outline: none;
	box-shadow: 0 0 3px 0.5px white;
}

.passwordReset a {
	color: white;
	text-decoration: underline;
}

#autoLogin {
	opacity:0;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
}
#autoLogin + label::before{
	display: inline-block;
	background-color: white;
	border-radius: 5px;
	content: '';
	width: 1.4rem;
	height: 1.4rem;
	margin-right: .5rem;
	pointer-events: auto;
}
#autoLogin:checked + label::before{
	background-image: url("../img/Checkmark-black.svg");
	background-position-x: center;
	background-position-y: center;
	background-repeat: no-repeat;
	pointer-events: auto;
}
#autoLoginLabel {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	align-content: center;
	font-size: 14px;
	font-weight: bold;
	color: white;
	height: 25px;
	margin: 0;
	pointer-events: none;
}
#submitBtn {
	color: #0B846F;
	width: 170px;
	height: 54px;
	font-size: 21px;
	font-weight: bold;
	background-color: white;
	border-color: white;
	border-radius: 30px;
	margin: 0px;
	padding: 0px;
}

#newsInfo {
	color: #FFF725;
}
#newsInfo a {
	color: #FFF725;
	text-decoration: underline;
}

#baloon {
	position: absolute;
	top: 10px;
	left: 50px;
	animation: baloon 3s infinite ease-in-out .8s alternate;
	background: url(../img/H01.png) no-repeat center center / 70px auto;
	display: inline-block;
	transition: 1.5s ease-in-out;
	width: 70px;
	height: 350px;
	margin-top: 15px;
}

@media (orientation: landscape){
	@media (max-height: 453px){
		.login-warning-area{
			left: calc( (320px - 100vw)/2);
			width: 100vw;
		}
	}
}
@media (max-height: 400px){
	#loginLogo{
		margin-bottom: 3px;
	}
}
@media (max-height: 365px){
	#loginLogo{
		margin-top: 3px;
	}
}

@keyframes baloon {
	0% {
		transform:translate(0, 0) rotate(-7deg);
	}
	50% {
		transform:translate(0, -7px) rotate(0deg);
	}
	100% {
		transform:translate(0, 0) rotate(7deg);
	}
}