
.gform_wrapper form .el-response-msg {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--cta-color);
	padding: 10px 4px;
	position: relative;
	z-index: 2;
}

.gform_wrapper form .el-response-msg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 600px;
	height: 100%;
	background: var(--neutral-gray);
	z-index: -1;
	border-radius: 4px;
}

@media screen and (max-width: 860px) {
	.gform_wrapper form .el-response-msg {
		font-size: 14px;
		margin-top: 18px;
	}
	
	.gform_wrapper form .el-response-msg::before {
		width: 100%;
	}
}
