.wag-wrapper {
	max-width: 480px;
	margin: 0 auto;
	font-family: inherit;
}

.wag-counter {
	margin-bottom: 20px;
}

.wag-counter-bar {
	width: 100%;
	height: 10px;
	background: #e6e6e6;
	border-radius: 999px;
	overflow: hidden;
}

.wag-counter-fill {
	height: 100%;
	background: #25D366;
	transition: width 0.4s ease;
}

.wag-counter-text {
	text-align: center;
	font-size: 14px;
	margin: 8px 0 0;
	color: #444;
}

.wag-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.wag-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wag-field label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.wag-field input {
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 15px;
	width: 100%;
	box-sizing: border-box;
}

.wag-field input:focus {
	outline: none;
	border-color: #25D366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wag-submit-btn {
	background: #25D366;
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.wag-submit-btn:hover {
	opacity: 0.9;
}

.wag-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.wag-feedback {
	font-size: 14px;
	text-align: center;
	min-height: 18px;
}

.wag-feedback.wag-ok {
	color: #1a7f37;
}

.wag-feedback.wag-error {
	color: #c0392b;
}

.wag-message {
	text-align: center;
	padding: 18px;
	border-radius: 8px;
	font-size: 15px;
}

.wag-message-full {
	background: #fdecea;
	color: #c0392b;
	border: 1px solid #f5c6cb;
}
