/**
 * Mani Blog Lead - Public Styles
 *
 * @package Mani_Blog
 */

.mani-lead-overlay {
	display: none;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.mani-lead-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 30px;
	border-radius: 6px;
	max-width: 450px;
	width: 90%;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	text-align: center;
}

.mani-lead-modal h2 {
	margin-top: 0;
	font-size: 1.5em;
}

.mani-lead-modal p {
	color: #555;
	margin-bottom: 20px;
}

.mani-lead-modal input[type="email"] {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1em;
	box-sizing: border-box;
}

.mani-lead-modal button {
	background: #0073aa;
	color: #fff;
	border: none;
	padding: 12px 30px;
	font-size: 1em;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}

.mani-lead-modal button:hover {
	background: #005a87;
}

.mani-lead-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 1.8em;
	cursor: pointer;
	color: #999;
	line-height: 1;
}

.mani-lead-close:hover {
	color: #333;
}
