/* Reset et styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lightbg {
    background-image: url(assets/img/pattern-14.png);
    background-color: #fff;
}

.patterned {
    background-image: url(assets/img/pattern.png);
}

.patterned-14 {
    background-image: url(assets/img/pattern-14.png);
}


body {
    font-family: "Open Sans", sans-serif;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.page {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    border-radius: 10px;
}

/* ======================= */
/*  Première Page : Validation */
/* ======================= */
.message {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
}

.button {
    background-color: #9DBE42;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 35px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Muli", sans-serif;
    font-size: 20px;

}

.button:hover {
    background-color: #8FB924;
}