* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}
body {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.recovery-container {
	background: white;
	border-radius: 10px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	width: 420px;
	padding: 40px;
	text-align: center;
}
.logo {
	margin: 10px 0 20px 0;
}
h1 {
	color: #333;
	margin-bottom: 20px;
	font-size: 24px;
}
p {
	color: #666;
	margin-bottom: 30px;
	font-size: 14px;
}
.input-group {
	margin-bottom: 20px;
	text-align: left;
}
label {
	display: block;
	margin-bottom: 8px;
	color: #555;
	font-size: 14px;
}
input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	transition: border 0.3s;
}
input:focus {
	border-color: #4a90e2;
	outline: none;
}
button {
	background: #4a90e2;
	color: white;
	border: none;
	padding: 12px 20px;
	width: 100%;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.3s;
}
button:hover {
	background: #3a7bc8;
}
.back-to-login {
	margin-top: 20px;
	font-size: 13px;
}
.back-to-login a {
	color: #4a90e2;
	text-decoration: none;
}