/* style_reset.css */

/* RESET ET BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
}

form {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #b59a4c;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #a4883f;
}

p {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

a {
    color: #b59a4c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ERREURS */
.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

/* LOGO */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    max-width: 150px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    form {
        padding: 20px;
    }
    input[type="email"],
    input[type="password"],
    button {
        font-size: 14px;
        padding: 8px;
    }
}

- 
resonsive 

/* RESET DE BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding: 20px;
}

/* CONTENEUR DU FORMULAIRE */
.form-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center; /* CENTRE tout le contenu */
}

/* LOGO */
.logo-container img {
    max-width: 150px;
    margin-bottom: 20px;
}

/* TITRES ET PARAGRAPHES */
h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* INPUTS ET BOUTONS */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #b59a4c;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #a4883f;
}

/* LIENS */
a {
    color: #b59a4c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ERREURS */
.error {
    color: red;
    margin-bottom: 10px;
    font-size: 14px;
}

/* SUCCES */
.success {
    color: green;
    margin-bottom: 10px;
    font-size: 14px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .form-container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }

    input[type="email"],
    input[type="password"],
    button {
        font-size: 14px;
        padding: 10px;
    }
}
.emoji-action {
    cursor: pointer;
    font-size: 1.4rem;
    margin-left: 8px;
    user-select: none;
}

.emoji-action:hover {
    opacity: 0.7;
}

