* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.page {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo {
    background-color: #2e5a44;
    color: white;
    text-align: center;
    padding: 22px 20px;
    border-radius: 16px;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.logo p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.intro {
    text-align: center;
    padding: 5px 10px;
}

.intro h2 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 14px;
}

.intro p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.bloc-vert {
    background-color: #7aaa8a;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.bloc-gris {
    background-color: #6b7b6b;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.bloc-titre {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
}

.bouton-blanc {
    background-color: white;
    color: #222;
    border-radius: 12px;
    padding: 14px 40px;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    width: 85%;
    text-align: center;
    display: block;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.bouton-blanc:hover {
    background-color: #f0f0f0;
}

.bouton-vert {
    background-color: #2e5a44;
    color: white;
    border-radius: 12px;
    padding: 14px 40px;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    width: 85%;
    text-align: center;
    display: block;
}

.bouton-vert:hover {
    background-color: #121b16;
}

.separateur {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 0.85rem;
    margin: 5px 0;
}

.separateur::before,
.separateur::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e5e5e5;
}