body {
    font-family: Arial, sans-serif;
    background-image: url('back3.jpg'); /* Définit l'image de fond */
    background-repeat: no-repeat; /* Empêche la répétition de l'image */
    background-position: center 5%; /* Centre l'image horizontalement et verticalement */
    background-size: cover;
}


.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: #008148;
}

h2 {
    text-align: center;
    color: #008148; /* Greenpeace Green */
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="email"],
input[type="password"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #008148;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #005f39; /* Darker Greenpeace Green */
}

.error-message {
    color: red;
    margin-bottom: 10px;
}

.link {
    display: block;
    text-align: center;
    color: #008148; /* Greenpeace Green */
    text-decoration: none;
    margin-top: 10px;
}

.link:hover {
    text-decoration: underline;
}

.links {
    text-align: center; /* Centrer horizontalement */
    margin-top: 20px; /* Espace entre les formulaires et les liens */
}

.links a {
    display: block; /* Pour centrer les liens les uns en dessous des autres */
    color: #008148; /* Couleur du texte */
    text-decoration: none; /* Enlever la soulignement */
    margin-bottom: 10px; /* Espace entre les liens */
}

.links a:hover {
    text-decoration: underline; /* Soulignement au survol */
}

