/* @import 'https://fonts.googleapis.com/css?family=Kanit|Prompt';

body{
	overflow: hidden;
}

.alert-page {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(8px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	animation: fadeIn 0.6s ease-in-out;
}

.alert-content {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px 60px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	text-align: center;
	animation: scaleUp 0.5s ease;
}

.alert-content i {
	font-size: 3rem;
	color: #1E40AF;
	margin-bottom: 20px;
	text-shadow: 0 0 10px rgba(30,64,175,0.5);
}

.alert-content h1 {
	font-family: 'Prompt', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0;
	background: linear-gradient(90deg, #1E40AF, #9333EA, #F97316);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 2px;
	animation: textGlow 2s infinite alternate;
}

.alert-content p {
	font-family: 'Prompt', sans-serif;
	line-height: 1.6;
	color: #555;
	margin: 10px 0;
	font-size: 1rem;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes scaleUp {
	from { transform: scale(0.1); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

@keyframes textGlow {
	from { text-shadow: 0 0 10px rgba(147,51,234,0.4); }
	to { text-shadow: 0 0 25px rgba(249,115,22,0.7); }
}

@media (max-width: 992px){
	.alert-content {
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
} */