.bpn-notify-wrap {
	max-width: 400px;
	margin: 20px 0;
}

.bpn-open-form {
	background: #f90;
	color: #000;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.bpn-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bpn-modal-inner {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	position: relative;
}

.bpn-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
}

.bpn-form p {
	margin: 15px 0;
}

.bpn-form label {
	display: block;
	margin-bottom: 5px;
}

.bpn-form input[type="text"],
.bpn-form input[type="email"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.bpn-honeypot {
	position: absolute !important;
	left: -9999px !important;
	height: 0;
	overflow: hidden;
}

.bpn-submit {
	background: #f90;
	color: #000;
	border: none;
	padding: 12px 24px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.bpn-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 4px;
	display: none;
}

.bpn-message.success {
	display: block;
	background: #d4edda;
	color: #155724;
}

.bpn-message.error {
	display: block;
	background: #f8d7da;
	color: #721c24;
}