.idiom-captcha-box {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background-color: rgba(0,0,0,0.3);
}


.captcha-container {
	position: relative;
	align-items: center;
	margin: 50px auto;
	border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.captcha-container .trigger-btn {
	background-color: white;
	color: #333;
	font-size: 16px;
	display: flex;
	justify-content: center;
	padding: 10px 30px;
}

.captcha-container .image-area {
	position: relative;
	background-color: #f8f9fa;
	overflow: hidden;
	z-index: 1000;
	width: 320px;
	height: 160px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.captcha-container .sliderMsg {
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 16px;
}

.captcha-container .captcha-image {
	width: 100%;
	height: 100%;
	display: block;
}

.captcha-container .refresh-btn {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 32px;
	height: 32px;
	background-color: rgba(0, 0, 0, 0.35);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.captcha-container .refresh-icon {
	color: white;
	font-size: 20px;
	font-weight: bold;
}

.captcha-container .marker {
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: rgba(60, 156, 255, 0.8);
	border: 2px solid white;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: white;
	font-size: 14px;
	transform: translate(-50%, -50%);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 20;
}