#ssm_loading_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	background-color: #efefef;
	opacity: 0.6;
	justify-content: center;
	align-items: center;
}

#ssm_loading_overlay img {
	width: 100px;
	height: 100px;
}

/* バリデーションエラーメッセージのスタイル */
.error-message {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: block;
}

/* エラー状態の入力フィールド */
input.error, select.error, textarea.error {
	border: 1px solid #e74c3c !important;
	background-color: #fdf2f2;
}

/* 正常状態の入力フィールド */
input.valid-field, select.valid-field, textarea.valid-field {
	border: 1px solid #27ae60 !important;
}