.pes-subscription-form-wrap {
	max-width: 520px;
	margin: 24px auto;
	padding: 24px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.pes-subscription-header {
	margin-bottom: 18px;
	text-align: center;
}

.pes-title {
	margin: 0 0 8px;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f2937;
}

.pes-description {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: #6b7280;
}

.pes-subscription-form {
	display: block;
}

.pes-form-row {
	margin-bottom: 16px;
}

.pes-form-row:last-child {
	margin-bottom: 0;
}

.pes-label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
}

.pes-input {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.4;
	color: #111827;
	background: #ffffff;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pes-input:focus {
	outline: none;
	border-color: #f59e0b;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.pes-input::placeholder {
	color: #9ca3af;
}

.pes-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 48px;
	padding: 0 20px;
	border: none;
	border-radius: 10px;
	background: #f59e0b;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.pes-button:hover {
	background: #d97706;
	transform: translateY(-1px);
}

.pes-button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.pes-message {
	margin-bottom: 16px;
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.5;
}

.pes-message-success {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.pes-message-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

@media (max-width: 640px) {
	.pes-subscription-form-wrap {
		padding: 18px;
		margin: 18px 0;
		border-radius: 14px;
	}

	.pes-title {
		font-size: 22px;
	}

	.pes-button {
		width: 100%;
	}
}