@charset "utf-8";

/* Bg */
body.bg_blue {
	position: relative;
	height: 100vh;
	min-height: 750px;
	background: linear-gradient(240deg, #1B284E 0%, #1D395D 7%, #204D70 15%, #2B96B4 61%, #11AAB1 75%, #51AAAF 82%, #5BAAC2 93%, #6AABDD 100%);
}

/* Title logo */
.login-top-box {
	padding-top: 58px;
}

/* Title logo */
.logo {
	width: 210px;
	margin: 0 auto;
}

.title {
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: center;
	padding-top: 8px;
}

/* Bg logo */
body.bg_blue.login .container::before {
	z-index: -1;
	opacity: .13;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 252px;
	margin: -126px 0 0 -200px;
	background: url(/image/bg_logo.png) center center no-repeat;
	background-size: 400px auto;
}

/* Login Box */
.login-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	color: #fff;
	transform: translate(-50%, -50%);
}

/* ID / Pass */
.login-box dl {
	padding-top: 35px;
	padding-bottom: 20px;
}

.login-box dl dt {
	font-size: 1.3rem;
	line-height: 1.6;
	padding-top: 20px;
	padding-bottom: 8px;
}

.login-box dl dd {
	position: relative;
}

.login-box dl dd input {
	display: block;
	-webkit-appearance: none;
	width: 100%;
	height: 32px;
	color: #000;
	font-size: 1.6rem;
	line-height: 1;
	padding: 0 10px;
	margin: 0;
	border: none;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .8);
}

/* Sample Text */
.login-box .sample {
	color: #ccc;
	font-size: 1.1rem;
	line-height: 1.6;
	padding-top: 5px;
}

/* Password Preview Btn */
.login-pass-preview {
	z-index: 10;
	cursor: pointer;
	display: block;
	position: absolute;
	top: calc((100% - 15px) / 2);
	right: 10px;
	aspect-ratio: 1;
	width: 15px;
	border: none;
}

.login-pass-preview.password-hidden {
	background: url(/image/password-hidden.png) center center no-repeat;
	background-size: contain;
}

.login-pass-preview.password-shown {
	background: url(/image/password-shown.png) center center no-repeat;
	background-size: contain;
}

/* Remember */
.login-box-remember input[type="checkbox"] {
	opacity: 0;
}

.login-box-remember label {
	cursor: pointer;
	position: relative;
	display: block;
	padding-left: 30px;
}

.login-box-remember label span {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1;
}

.login-box-remember label span::before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 0px;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	background-color: rgba(255, 255, 255, .8);
}

.login-box-remember:has(:focus) label span::before {
	outline: solid 2px #222;
}

.login-box-remember label span::after {
	display: none;
}

.login-box-remember label input[type="checkbox"]:checked+span::after {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 0px;
	width: 20px;
	height: 8px;
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Login Btn */
.login-box-btn {
	padding-top: 50px;
	padding-bottom: 30px;
}

.login-box-btn button {
	cursor: pointer;
	display: block;
	width: 70%;
	height: 40px;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	text-align: center;
	padding: 0;
	margin: 0 auto;
	border: none;
	border-radius: 3px;
	background-color: rgba(106, 171, 221, .8);
}

.login-box-btn button:hover {
	background-color: rgba(106, 171, 221, 1);
}

/* Text */
.login-box-text {
	color: #eee;
	font-size: 1rem;
	line-height: 1.4;
	text-align: center;
}

.container {
	width: initial !important;
}

.login-error-message {
	position: absolute;
	color:#ff0000;
	font-size: 1.3em;
	display: block flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
}