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;
}

.form-section {
		max-width: 400px;
		width: 80%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
}

.error-box {
		background-color: #ffeef4;
		border: 1px dashed #f9115b;
		padding: 10px;
		margin-bottom: 20px;
		border-radius: 5px;
		color: #f82a5b;
		font-size: 14px;
		text-align: center;
}

.form-section h2 {
		margin-bottom: 20px;
		font-size: 24px;
		font-weight: bold;
		text-align:center;
}

.form-group {
		margin-bottom: 10px;
}

.form-group label {
		display: block;
		font-size: 14px;
		color: #222;
		font-weight:600;
		margin-bottom: 5px;
}

.form-group input {
		width: 100%;
		padding: 10px;
		border: 1px solid #ddd;
		border-radius: 5px;
		font-size: 14px;
		box-sizing: border-box;
}

.form-group input:focus {
		border-color: #007bff;
		outline: none;
}

.form-group .error-message {
		font-size: 12px;
		color: #ff165e;
		margin-top: 5px;
}


.form-group .error-icon {
		display: inline-block;
		width: 14px;
		height: 14px;
		margin-right: 5px;
		border: 1px solid red;
		border-radius: 50%;
		color: red;
		font-weight: bold;
		text-align: center;
		line-height: 16px;
		font-size: 11px;
		background:#ffe9e8;
}

.submit-button {
		width: 100%;
		padding: 10px;
		margin-top:20px;
		background-color: #13a3ac;
		border: none;
		border-radius: 35px;
		color: #fff;
		font-size: 16px;
		cursor: pointer;
		transition: background-color 0.3s ease;
}

.submit-button:hover {
		background-color: #17a589;
}
.log-info {
	font-size:13px;
	text-align:left;
	padding-bottom:15px;
}

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


.copyright b {
		color: #000;

}
.error-message{
	display: none;
}

/*
	join 관련
 */
.terms-box {
	width: 100%;
	height: 150px;
	padding: 10px;
	border: 1px solid #ddd;
	overflow-y: auto;
	background-color: #f9f9f9;
}
.checkbox-container {
	margin-top: 10px;
}
.join-submit-button {
	margin-top: 20px;
	padding: 10px;
	font-size: 16px;
	background-color: #13a3ac;;
	border: none;
	cursor: pointer;
}
.join-submit-button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

/* 반응형 설정 */
@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;
		}

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

		.form-section img {
				width: 100px;
		}
}
h3{
	margin-bottom: 7px;
}