* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f5f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page {
    width: 100%;
    max-width: 420px;
}

.formulaire {
    background-color: #e8f0e8;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    overflow: hidden;
}

/* EN-TÊTE */
.entete {
    background-color: #2e5a44;
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    margin: 10px 10px 0;
}

.retour {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    margin-right: 12px;
}

.entete h1 {
    font-size: 1rem;
    font-weight: bold;
}

/* CONTENU */
.contenu {
    padding: 24px 22px 26px;
}

/* CHAMP */
.champ {
    margin-bottom: 16px;
}

.champ label {
    display: block;
    font-size: 0.7rem;
    font-weight: bold;
    color: #3a5a3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.champ input {
    width: 100%;
    background-color: white;
    border: 1.5px solid white;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.85rem;
    color: #333;
    outline: none;
}

.champ input:focus {
    border-color: #2e5a44;
}

/* ŒIL */
.champ-oeil {
    position: relative;
}

.champ-oeil input {
    padding-right: 38px;
}

.champ-oeil button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: #aaa;
}

.champ-oeil button:hover {
    color: #2e5a44;
}

/* BOUTON */
.bouton-vert {
    width: 100%;
    background-color: #2e5a44;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 13px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 6px;
}

.bouton-vert:hover {
    background-color: #1f3d2e;
}

/* LIEN INSCRIPTION */
.lien-inscription {
    text-align: center;
    margin-top: 16px;
    font-size: 0.78rem;
    color: #666;
}

.lien-inscription a {
    color: #2e5a44;
    font-weight: bold;
}