.epe-trigger-wrap { margin: 10px 0; }

.epe-open-btn {
	background: #1e8b1e;
	color: #fff;
	border: none;
	padding: 12px 26px;
	font-size: 15px;
	border-radius: 6px;
	cursor: pointer;
	transition: opacity .15s ease;
}
.epe-open-btn:hover { opacity: .9; }

.epe-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.55);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.epe-popup-box {
	background: #fff;
	width: 100%;
	max-width: 380px;
	border-radius: 10px;
	padding: 28px 26px 24px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.25);
	animation: epe-pop-in .18s ease;
}

@keyframes epe-pop-in {
	from { transform: scale(.95); opacity: 0; }
	to   { transform: scale(1); opacity: 1; }
}

.epe-popup-title {
	text-align: center;
	color: #1e8b1e;
	margin: 0 0 20px;
	font-size: 22px;
	font-weight: 700;
}

.epe-field-row { margin-bottom: 14px; }

.epe-field-row label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	color: #333;
}

.epe-input,
.epe-field-row textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.epe-field-row textarea { min-height: 80px; resize: vertical; }

.epe-submit-btn {
	width: 100%;
	background: #1e8b1e;
	color: #fff;
	border: none;
	padding: 12px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 6px;
}

.epe-close-btn {
	width: 100%;
	background: #e0533d;
	color: #fff;
	border: none;
	padding: 10px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
}

.epe-form-message {
	text-align: center;
	padding: 8px;
	border-radius: 6px;
	margin-bottom: 10px;
	font-size: 14px;
}
.epe-form-message.success { background: #e6f4ea; color: #1e7e34; }
.epe-form-message.error   { background: #fdecea; color: #c0392b; }

.epe-submit-btn[disabled] { opacity: .6; cursor: not-allowed; }
