/* Page Inscription : cartes de programmes + formulaire */

.inscription-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 15px 50px;
}

.inscription-page h1 {
    text-align: center;
    color: maroon;
}

.programmes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.programmes .card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 260px;
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

.programmes .card h3 {
    color: maroon;
    margin-top: 0;
}

.programmes .card p {
    font-size: 0.95em;
    line-height: 1.5em;
    color: #333;
}

.cta {
    display: block;
    background-color: maroon;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin: 30px auto;
    width: 280px;
    max-width: 100%;
}

.cta:hover {
    background-color: rgb(235, 109, 109);
}

#formulaire {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto 0;
}

#formulaire h2 {
    text-align: center;
    color: maroon;
}

#formulaire label {
    display: block;
    font-weight: bold;
    margin-top: 14px;
}

#formulaire input,
#formulaire select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 15px;
}

#formulaire button {
    background-color: maroon;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
    margin-top: 18px;
}

#formulaire button:hover {
    background-color: rgb(235, 109, 109);
}

.site-web-piege {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 480px) {
    .cta {
        width: 100%;
    }
    #formulaire {
        padding: 20px 16px;
    }
}
