quelque amelioration

This commit is contained in:
2025-11-02 23:20:42 +01:00
parent 26c06eae90
commit 296b5c5a62
19 changed files with 461 additions and 328 deletions

View File

@@ -1,67 +1,83 @@
/* Styles globaux */
body {
font-family: Arial, sans-serif;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
background-color: #f4f4f9; /* fond clair */
background: linear-gradient(to right, #f0f2f5, #e2e8f0);
color: #333;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
/* Container centré */
form {
background-color: #fff;
padding: 30px 25px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
width: 100%;
max-width: 400px;
box-sizing: border-box;
}
/* Titres */
h1 {
color: #1e3d59; /* bleu foncé */
border-bottom: 2px solid #aac4e0;
padding-bottom: 10px;
margin-top: 0;
}
/* Formulaire */
form {
background: #fff;
padding: 20px;
border-radius: 6px;
border: 1px solid #d0dbe5;
max-width: 600px;
margin-top: 20px;
color: #1a202c;
border-bottom: 3px solid #63b3ed;
padding-bottom: 12px;
margin-bottom: 20px;
font-weight: 600;
text-align: center;
}
/* Labels et inputs */
label {
display: block;
margin-bottom: 15px;
font-weight: bold;
margin-bottom: 8px;
font-weight: 600;
}
input[type="text"],
textarea {
input[type="password"] {
width: 100%;
padding: 8px;
border: 1px solid #bfc9d6;
border-radius: 4px;
padding: 10px;
border: 1px solid #cbd5e0;
border-radius: 6px;
box-sizing: border-box;
font-size: 1rem;
margin-bottom: 15px;
}
/* Bouton */
button {
background-color: #2a73cc;
width: 100%;
background-color: #3182ce;
color: #fff;
padding: 10px 15px;
padding: 12px;
border: none;
border-radius: 4px;
border-radius: 6px;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #195aa7;
background-color: #2b6cb0;
}
/* Lien annuler */
/* Lien annuler / autres liens */
a {
margin-left: 10px;
color: #2a73cc;
display: inline-block;
margin-top: 10px;
color: #3182ce;
text-decoration: none;
font-weight: 500;
text-align: center;
width: 100%;
}
a:hover {
@@ -70,20 +86,22 @@ a:hover {
/* Messages d'erreur */
.error {
color: #721c24;
background: #f8d7da;
border: 1px solid #f5c6cb;
color: #c53030;
background-color: #fed7d7;
border: 1px solid #f56565;
padding: 10px;
border-radius: 5px;
border-radius: 6px;
margin-bottom: 15px;
text-align: center;
}
/* Responsive */
@media (max-width: 640px) {
@media (max-width: 480px) {
body {
padding: 10px;
}
form {
padding: 15px;
padding: 20px;
}
}
}