body {
    background-image: url("images/images/gaia2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

main {
    margin-right: 8%;
    margin-left: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.form-container {
    width: 80%;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px #00000026;
    border-radius: 5px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #171A17;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.bouton {
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    background-color: #6FDB67;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.bouton:hover {
    background-color: #074A08;
    color: #6FDB67;
}

.form-container p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

.form-container h2{
    text-align: center;
    color: #37861D;"
    margin-bottom: 10px;
}

.seconnecter {
    color: #37861D;
    font-weight: bold;
    text-decoration: none;
}

.seconnecter:hover {
    text-decoration: underline;
}

hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #171A17;
}