/* Form submission success UX
 * Created: 2026-05-12
 * Provides prominent post-submission feedback for CF7 (JP/EN) and MW WP Form (DE/ZH).
 */

.mate-form-success {
	padding: 60px 24px;
	text-align: center;
	background: #f7f7f7;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	margin: 40px auto;
	max-width: 720px;
	animation: mate-form-success-fadein 0.4s ease-out;
}

.mate-form-success__icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 24px;
	background: #2bbf6a;
	color: #fff;
	font-size: 48px;
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
}

.mate-form-success__title {
	font-size: 26px;
	margin: 0 0 20px;
	color: #333;
	line-height: 1.4;
	font-weight: bold;
}

.mate-form-success__message {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin: 0 auto 32px;
	max-width: 600px;
	text-align: left;
	white-space: pre-line;
}

.mate-form-success__btn {
	display: inline-block;
	padding: 14px 36px;
	background: #c8161d;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-size: 15px;
	transition: background 0.2s, transform 0.2s;
}

.mate-form-success__btn:hover {
	background: #a01018;
	transform: translateY(-2px);
}

/* Failure variant (CF7 mailfailed) */
.mate-form-success--failed .mate-form-success__icon {
	background: #c8161d;
}

/* MW WP Form complete state enhancement */
.mw_wp_form.mw_wp_form_complete {
	padding: 60px 24px;
	text-align: center;
	background: #f7f7f7;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	margin: 40px auto;
	max-width: 720px;
	animation: mate-form-success-fadein 0.4s ease-out;
	position: relative;
}

.mw_wp_form.mw_wp_form_complete::before {
	content: '✓';
	display: block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 24px;
	background: #2bbf6a;
	color: #fff;
	font-size: 48px;
	border-radius: 50%;
	font-weight: bold;
}

.mw_wp_form.mw_wp_form_complete p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

@keyframes mate-form-success-fadein {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
	.mate-form-success,
	.mw_wp_form.mw_wp_form_complete {
		padding: 40px 16px;
		margin: 20px 8px;
	}
	.mate-form-success__icon,
	.mw_wp_form.mw_wp_form_complete::before {
		width: 64px;
		height: 64px;
		line-height: 64px;
		font-size: 36px;
	}
	.mate-form-success__title {
		font-size: 22px;
	}
}
