* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Segoe UI', sans-serif;
	background: linear-gradient(135deg, #eef2ff, #f5f7fb);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.card {
	background: white;
	padding: 35px 30px;
	border-radius: 18px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	max-width: 380px;
	width: 90%;
	animation: fadeIn 0.6s ease;
}

/* ICON (support emoji & image) */
.icon {
	font-size: 64px;
	margin-bottom: 10px;
}

.icon img {
	width: 110px;
	max-width: 100%;
	height: auto;
}

/* TEXT */
h2 {
	margin: 10px 0;
	color: #1d4ed8;
}

.desc {
	color: #555;
	font-size: 14px;
	margin-bottom: 10px;
}

.status {
	font-size: 12px;
	color: #888;
	margin: 10px 0 15px;
}

/* INPUT */
.input {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid #ddd;
	outline: none;
	font-size: 14px;
	margin-bottom: 15px;
	transition: 0.2s;
}

.input:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 2px rgba(59,130,246,0.2);
}

/* BUTTON */
.btn {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 10px;
	background: #3b82f6;
	color: white;
	font-weight: bold;
	cursor: pointer;
	transition: 0.2s;
}

.btn:hover {
	background: #2563eb;
}

/* LOADING DOT */
.loading span {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #3b82f6;
	border-radius: 50%;
	margin: 0 3px;
	animation: bounce 1.4s infinite ease-in-out both;
}

.loading span:nth-child(1) { animation-delay: -0.32s; }
.loading span:nth-child(2) { animation-delay: -0.16s; }

/* ANIMATION */
@keyframes bounce {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 600px) {
	.icon img {
		width: 90px;
	}

	.card {
		padding: 25px 20px;
	}
}
.timer {
		font-size: 22px;
		font-weight: bold;
		margin-top: 10px;
		color: #333;
	}