/* WRAPPER – carte blanche clean */
.ccs-wrapper {
    max-width: 480px;
    margin: 20px auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* TITRES */
.ccs-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.ccs-subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
}

/* GROUPES DE CHAMP */
.ccs-group {
    margin-bottom: 18px;
}

.ccs-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

/* CHAMPS */
.ccs-group input,
.ccs-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #d4d4d4;
    font-size: 15px;
    transition: all 0.2s ease-in-out;
    background: #fafafa;
}

.ccs-group input:focus,
.ccs-group textarea:focus {
    border-color: #E23125;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(226,49,37,0.15);
}

/* BOUTON CTA */
.ccs-btn {
    width: 100%;
    padding: 14px;
    background: #E23125;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.ccs-btn:hover {
    background: #c5281f;
}

/* CONSENTEMENT RGPD */
.ccs-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #333;
}

/* MESSAGE DE SUCCÈS */
.ccs-success {
    padding: 12px 16px;
    background: #eaffea;
    border-left: 4px solid #39a839;
    margin-bottom: 20px;
    border-radius: 6px;
    color: #245d24;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 500px) {
    .ccs-wrapper {
        padding: 24px;
    }
}
