* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	background: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 20px;
}

.forgot-password-container {
	background: rgba(255, 255, 255, 1);
	border-radius: 20px;
	padding: 48px 40px;
	width: 100%;
	max-width: 420px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forgot-password-container:hover {
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.logo-section {
	text-align: center;
	margin-bottom: 40px;
}

.brand-name {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	color: #666;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.demo-text {
	font-size: 36px;
	font-weight: 800;
	color: #2d3748;
	letter-spacing: -1px;
	margin-bottom: 32px;
}

.subtitle {
	color: #2d3748;
	font-size: 20px;
	margin-bottom: 16px;
	font-weight: 600;
}

.description {
	color: #718096;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 32px;
}

.form-group {
	margin-bottom: 32px;
	position: relative;
}

.input-wrapper {
	position: relative;
}

.input-label {
	position: absolute;
	left: 16px;
	top: 16px;
	color: #a0aec0;
	font-size: 16px;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 1;
}

.input-label.active {
	top: -8px;
	left: 12px;
	font-size: 12px;
	color: #667eea;
	background: white;
	padding: 0 4px;
}

.form-input {
	width: 100%;
	padding: 16px;
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	font-size: 16px;
	background: #fff;
	transition: all 0.3s ease;
	outline: none;
}

.form-input:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.error {
	border-color: #e53e3e;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-input:focus + .input-label,
.form-input:not(:placeholder-shown) + .input-label {
	top: -8px;
	left: 12px;
	font-size: 12px;
	color: #667eea;
	background: white;
	padding: 0 4px;
}

.form-input.error + .input-label {
	color: #e53e3e;
}

.submit-btn {
	width: 100%;
	padding: 16px;
	background: #000000;
	color: white;
	border: 2px solid #000000;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 24px;
}

.submit-btn:hover {
	background: white;
	color: #000000;
	border: 2px solid #000000;
}

.back-to-login {
	text-align: center;
}

.back-to-login a {
	color: #667eea;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.back-to-login a:hover {
	color: #5a67d8;
	text-decoration: underline;
}

@media (max-width: 480px) {
	.forgot-password-container {
		padding: 32px 24px;
		border-radius: 16px;
	}
	
	.demo-text {
		font-size: 28px;
	}
}

/* Subtle animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.forgot-password-container {
	animation: fadeInUp 0.6s ease-out;
}

.form-group {
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.form-group { animation-delay: 0.1s; }
.submit-btn { animation: fadeInUp 0.6s ease-out 0.2s both; }
.back-to-login { animation: fadeInUp 0.6s ease-out 0.3s both; }

@media all and (max-width: 768px) {
	html, body { top: 32px !important; }
}