.angie-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-popup-overlay.is-visible {
	opacity: 1;
	visibility: visible;
}

.angie-popup-modal {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	width: 90%;
	max-width: 400px;
	position: relative;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	transform: translateY(20px);
	transition: transform 0.3s ease;
	text-align: center;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.angie-popup-overlay.is-visible .angie-popup-modal {
	transform: translateY(0);
}

.angie-popup-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #666;
	transition: color 0.2s;
}

.angie-popup-close:hover {
	color: #000;
}

.angie-popup-title {
	margin: 0 0 10px;
	font-size: 24px;
	color: #333;
}

.angie-popup-desc {
	margin: 0 0 20px;
	font-size: 15px;
	color: #666;
}

.angie-form-group {
	margin-bottom: 15px;
}

.angie-form-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

.angie-form-input:focus {
	outline: none;
	border-color: #0073aa;
}

.angie-submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.angie-submit-btn:hover {
	background-color: #005177;
}

.angie-submit-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.angie-form-message {
	margin-top: 15px;
	font-size: 14px;
}

.angie-form-message.success {
	color: #28a745;
}

.angie-form-message.error {
	color: #dc3545;
}