Revert "feat: apply homepage green gradient style to login/register pages"

This reverts commit 512c4e1365.
This commit is contained in:
soufiane 2025-11-18 23:29:54 +01:00
parent 512c4e1365
commit 4e2ab858b6
2 changed files with 6 additions and 6 deletions

View File

@ -77,8 +77,8 @@ export default function LoginPage() {
};
return (
<div className="min-h-screen bg-gradient-to-b from-[#1a4d2e] via-[#2d5a3d] to-[#1a4d2e] flex items-center justify-center py-12 px-4">
<Card className="w-full max-w-md p-8 bg-white shadow-2xl border-0">
<div className="min-h-[calc(100vh-4rem)] flex items-center justify-center py-12 px-4">
<Card className="w-full max-w-md p-8">
<div className="text-center mb-8">
<div className="flex justify-center mb-6">
<Image
@ -89,7 +89,7 @@ export default function LoginPage() {
priority
/>
</div>
<h1 className="text-3xl font-bold text-[#1a4d2e] mb-2">Connexion</h1>
<h1 className="text-3xl font-bold text-gray-900 mb-2">Connexion</h1>
<p className="text-gray-600">
Connectez-vous pour participer au jeu-concours
</p>

View File

@ -35,8 +35,8 @@ export default function RegisterPage() {
};
return (
<div className="min-h-screen bg-gradient-to-b from-[#1a4d2e] via-[#2d5a3d] to-[#1a4d2e] flex items-center justify-center py-12 px-4">
<Card className="w-full max-w-md p-8 bg-white shadow-2xl border-0">
<div className="min-h-[calc(100vh-4rem)] flex items-center justify-center py-12">
<Card className="w-full max-w-md p-8">
<div className="text-center mb-8">
<div className="flex justify-center mb-6">
<Image
@ -47,7 +47,7 @@ export default function RegisterPage() {
priority
/>
</div>
<h1 className="text-3xl font-bold text-[#1a4d2e] mb-2">Inscription</h1>
<h1 className="text-3xl font-bold text-gray-900 mb-2">Inscription</h1>
<p className="text-gray-600">
Créez un compte pour participer au jeu-concours
</p>