body, html {
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
	display: flex;
	height: 100vh;
	width: 100%;
}

.container {
	display: flex;
	width: 100%;
	height: 100vh;
}

.left {
	flex: 1;
	background: url('../images/login-image.jpg') no-repeat center center/cover;
}

.right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.login-form {
	max-width: 400px;
	width: 80%;
	text-align: center;
}

.login-form img {
	width: 200px;
	margin-bottom: 50px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	box-sizing: border-box;
}

.login-form input[type="checkbox"] {
	margin-right: 5px;
}

.login-form button {
	width: 100%;
	padding: 10px;
	background-color: #00a1b7;
	color: white;
	border: none;
	border-radius: 35px;
	cursor: pointer;
	font-size: 16px;
	box-sizing: border-box;
}

.login-form .links {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	font-size: 13px;
	gap: 15px;
}

.login-form .links a {
	color: #666;
	text-decoration: none;
}

.login-form .links a:hover {
	text-decoration: none;
	font-weight:800;
}

.log-info {
font-size:13px;
text-align:left;
padding-bottom:15px;
}

.copyright {
	margin-top: 60px;
	font-size: 12px;
	color: #78819e;
}


.copyright b {
	color: #000;

}

/* 반응형 설정 */
@media (max-width: 1024px) {
	.container {
			flex-direction: column;
	}

	.left {
			height: 50%;
			flex: none;
	}

	.right {
			height: 50%;
			flex: none;
	}
}

@media (max-width: 768px) {
	.right {
			flex: 1;
			height: 100vh;
			background-color: #fff;
			padding: 20px;
			justify-content: center;
	}

	.login-form {
			max-width: 90%;
			width: 100%;
	}

	.login-form img {
			width: 100px;
	}
}

.id-err-msg {
	color:#ff0000;
}

.error-box > p, .error-box > span{
	color: #f82a5b;
	font-size: 15px;
	text-align: center;
}