main {
	display: flex;
    justify-content: center;  /* Centre horizontalement */
}
	
.forgot-password-container {
	background: #fff;
	padding: 40px;
	width: 100%;
	max-width: 500px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.form-group input[type="email"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.btn {
	width: 100%;
	padding: 12px;
	background: #0056b3;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s;
}

	.btn:hover {
		background: #004494;
	}

.login-link {
	text-align: center;
	margin-top: 15px;
}

	.login-link a {
		color: #0056b3;
		text-decoration: none;
	}
	
	.login-link a:hover {
		text-decoration: underline;
	}