.forgot-container {
	background: rgba(139, 69, 172, 0.25);
	backdrop-filter: blur(20px);
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	padding: 36px 32px;
	width: 100%;
	max-width: 440px;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.back-button {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.9);
	font-size: 24px;
	cursor: pointer;
	padding: 8px;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.back-button:hover {
	color: #ffffff;
	transform: translateX(-4px);
}

.forgot-game-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 32px;
	animation: float 3s ease-in-out infinite;
}

.forgot-logo {
	font-size: 28px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 6px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: -1px;
}

.forgot-subtitle {
	background: rgba(255, 255, 255, 0.95);
	color: #7b1fa2;
	text-align: center;
	padding: 6px 16px;
	border-radius: 16px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.description {
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 24px;
}

.submit-button {
	width: 100%;
	padding: 16px;
	background: #ffd700;
	border: none;
	border-radius: 12px;
	color: #000000;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 8px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.submit-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(255, 215, 0, 0.5);
	background: #ffffff;
}

.back-to-login {
	text-align: center;
	margin-top: 20px;
}

.back-to-login a {
	color: #ffd700;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.3s ease;
}

.back-to-login a:hover {
	color: #ffffff;
	text-decoration: underline;
}

#error-message {
	text-align: center;
	color: #ffd700;
	font-weight: 800;
}

@media (max-width: 480px) {
	.forgot-container {
		padding: 28px 24px;
		margin: 10px;
	}
}