/* Ariel Popup Styles */
:root {
	--ariel-primary: #6366f1;
	--ariel-primary-hover: #4f46e5;
	--ariel-bg: rgba(255, 255, 255, 0.1);
	--ariel-glass-bg: rgba(255, 255, 255, 0.2);
	--ariel-text: #1f2937;
	--ariel-white: #ffffff;
	--ariel-font: "Inter", Sans-serif;
}

.ariel-popup-trigger-container,
.ariel-popup-overlay,
.ariel-popup-overlay * {
	font-family: var(--ariel-font);
	text-align: center;
}

.ariel-popup-btn {
	background: #5657CD;
	color: var(--ariel-white);
	padding: 12px 24px;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
	display: inline-block;
	text-decoration: none;
	font-family: var(--ariel-font);
}

.ariel-popup-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.ariel-popup-overlay {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
	justify-content: center;
	align-items: center;
}

.ariel-popup-content.glassmorphism {
	background: rgba(255, 255, 255, 0.85);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 40px;
	border-radius: 20px;
	max-width: 500px;
	width: 90%;
	position: relative;
	animation: arielFadeIn 0.4s ease;
}

@keyframes arielFadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ariel-popup-close-btn {
	position: absolute;
	top: 20px;
	right: 25px;
	font-size: 28px;
	font-weight: bold;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
}

.ariel-popup-close-btn:hover {
	color: var(--ariel-primary);
}

.ariel-popup-header h2 {
	margin-top: 0;
	color: var(--ariel-primary);
	font-size: 24px;
}

.ariel-popup-header p {
	color: #666;
	margin-bottom: 30px;
}

.ariel-form-group {
	margin-bottom: 20px;
}

.ariel-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--ariel-text);
}

.ariel-form-group input {
	width: 100%;
	padding: 12px;
	border: 2px solid rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
	box-sizing: border-box;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.ariel-form-group input:focus {
	outline: none;
	border-color: var(--ariel-primary);
}

.ariel-submit-btn {
	width: 100%;
	background: var(--ariel-primary);
	color: white;
	padding: 14px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
	margin-top: 10px;
}

.ariel-submit-btn:hover {
	background: var(--ariel-primary-hover);
}

#ariel-form-response {
	margin-top: 15px;
	text-align: center;
	font-weight: 500;
}

.ariel-error-msg {
	color: #ef4444;
	font-size: 12px;
	margin-top: 5px;
	display: none;
	text-align: left;
}

.ariel-success {
	color: #10b981;
}

.ariel-error {
	color: #ef4444;
}

/* Thank You Screen Styles */
.ariel-thank-you-screen {
	animation: arielFadeIn 0.5s ease forwards;
}

.ariel-success-icon svg {
	filter: drop-shadow(0 4px 6px rgba(16, 185, 129, 0.2));
}