#ceg-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at center, #1a1a3d 0%, #05050f 100%);
	z-index: 999999;
	animation: cegFadeIn 0.8s ease;
}
@keyframes cegFadeIn { from{opacity:0} to{opacity:1} }

.ceg-card {
	width: 90%;
	max-width: 400px;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px 30px;
	border: 1px solid rgba(255,255,255,0.15);
	box-shadow: 0 0 25px rgba(120,80,255,0.5), 0 0 60px rgba(80,180,255,0.25);
	animation: cegFloatIn 1s ease, cegGlowPulse 3s ease-in-out infinite;
	text-align: center;
	font-family: 'Segoe UI', Arial, sans-serif;
}
@keyframes cegFloatIn {
	from { transform: translateY(40px) scale(0.9); opacity: 0; }
	to { transform: translateY(0) scale(1); opacity: 1; }
}
@keyframes cegGlowPulse {
	0%,100% { box-shadow: 0 0 25px rgba(120,80,255,0.5), 0 0 60px rgba(80,180,255,0.25); }
	50% { box-shadow: 0 0 45px rgba(120,80,255,0.8), 0 0 90px rgba(80,180,255,0.45); }
}

.ceg-card h2 {
	font-size: 24px;
	margin-bottom: 8px;
	background: linear-gradient(90deg,#a78bfa,#60a5fa,#f472b6);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.ceg-sub { color:#c9c9e8; font-size:13px; margin-bottom:25px; }

.ceg-field { position: relative; margin-bottom: 22px; text-align: left; }
.ceg-field input {
	width: 100%;
	padding: 14px 12px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 10px;
	color: #fff;
	font-size: 15px;
	outline: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
.ceg-field input:focus {
	border-color: #a78bfa;
	box-shadow: 0 0 12px rgba(167,139,250,0.6);
	background: rgba(255,255,255,0.1);
}
.ceg-field label {
	position: absolute;
	left: 12px; top: 14px;
	color: #9d9dc9;
	font-size: 14px;
	pointer-events: none;
	transition: all 0.2s ease;
}
.ceg-field input:focus + label,
.ceg-field input:not(:placeholder-shown) + label {
	top: -10px; left: 8px;
	font-size: 11px;
	padding: 0 6px;
	background: #241f4d;
	color: #c4b5fd;
	border-radius: 4px;
}

.ceg-error { color:#fca5a5; font-size:12px; margin-top:4px; min-height:14px; display:block; text-align:left; }
.ceg-status { color:#93c5fd; font-size:12px; margin-top:10px; min-height:14px; }

.ceg-btn {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	background: linear-gradient(90deg,#7c3aed,#3b82f6);
	background-size: 200% 100%;
	box-shadow: 0 0 20px rgba(124,58,237,0.6);
	transition: transform 0.2s ease, background-position 0.5s ease;
	margin-top: 8px;
}
.ceg-btn:hover {
	background-position: 100% 0;
	transform: translateY(-2px);
	box-shadow: 0 0 30px rgba(124,58,237,0.9);
}
.ceg-btn:active { transform: translateY(0) scale(0.97); }
.ceg-btn:disabled { opacity: 0.6; cursor: not-allowed; }
