/* ==========================================================================
   TVS Block Newsletter - Frontend Signup Box & Public CSS
   ========================================================================== */

.tvs-newsletter-signup-box,
.tvs-pro-signup-container {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 28px;
	max-width: 480px;
	margin: 24px auto;
	box-shadow: 0 4px 16px rgba(0, 56, 135, 0.06);
	position: relative;
	overflow: hidden;
}

.tvs-newsletter-signup-box::before,
.tvs-pro-signup-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #ffea00 0%, #d9ff00 100%);
}

.tvs-signup-title,
.tvs-pro-signup-title {
	margin: 0 0 8px 0;
	font-size: 20px;
	font-weight: 700;
	color: #003887;
}

.tvs-signup-desc,
.tvs-pro-signup-desc {
	margin: 0 0 18px 0;
	font-size: 14px;
	color: #64748b;
	line-height: 1.5;
}

.tvs-form-group,
.tvs-pro-form-row {
	margin-bottom: 12px;
}

.tvs-input,
.tvs-pro-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.tvs-input:focus,
.tvs-pro-input:focus {
	border-color: #003887;
	box-shadow: 0 0 0 3px rgba(0, 56, 135, 0.1);
	outline: none;
}

.tvs-submit-btn,
.tvs-pro-submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #ffea00 0%, #d9ff00 100%);
	color: #003887;
	border: 1px solid rgba(0, 56, 135, 0.12);
	padding: 13px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.15s;
}

.tvs-submit-btn:hover,
.tvs-pro-submit-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(255, 234, 0, 0.35);
}

.tvs-submit-btn:disabled,
.tvs-pro-submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.tvs-form-message,
.tvs-pro-form-msg {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
}

.tvs-form-message.success,
.tvs-pro-form-msg.success {
	color: #16a34a;
}

.tvs-form-message.error,
.tvs-pro-form-msg.error {
	color: #dc2626;
}

