@charset "UTF-8";

/* ================== PAGE ADHÉSION ================== */

    .li-tarif {
        padding-top: 10px;
    }

    .point {
        color: black;
        font-size: 20px;
        padding-right: 10px;
    }


    /* ================== BOUTONS ================== */

    .b-formulaire {
        background-color: #fb567c;
        width: 100%;
        border: none;
        color: white;
        padding: 12px 30px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 20px;
        margin: 2px 2px;
        transition-duration: 0.4s;
        cursor: pointer;
        border-radius: 6px;
        box-sizing: border-box;
    }

    .b-formulaire:hover,
    .b-formulaire:active {
        background-color: #f82052;
        text-decoration: none;
    }


    .b-formulaire2 {
        background-color: #0390bef5;
        width: 100%;
        border: none;
        color: white;
        padding: 12px 20px;
        text-align: center;
        text-decoration: none;
        font-size: 20px;
        margin: 0;
        transition-duration: 0.4s;
        cursor: pointer;
        border-radius: 6px;
        display: block;
        box-sizing: border-box;
    }

    .b-formulaire2:hover,
    .b-formulaire2:active {
        background-color: #035774f5;
        text-decoration: none;
    }


    /* ================== FORMULAIRE EMPLOYEUR ================== */

    .form-employeur input[type=text],
    .form-employeur input[type=email],
    .form-employeur input[type=password] {
        width: 100%;
        font-size: 20px;
        max-width: 500px;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        display: inline-block;
        background: #ffffff;
        box-sizing: border-box;
    }

    .form-employeur button {
        max-width: 500px;
    }


    /* ================== TEXTES ================== */

    .titre-inscrit {
        padding-top: 0;
        font-size: 40px;
    }

    .text-inscrit {
        font-size: 20px;
        margin-top: -20px;
    }


    /* ================== TITRES FORFAITS ================== */

    .titre-inscription {
        font-size: 26px;
        font-weight: bold;
        padding-top: 15px;
        padding-bottom: 10px;
        text-align: center;
        background: rgb(1, 143, 238);
        color: white;
    }

    .titre-inscription2 {
        font-size: 26px;
        font-weight: bold;
        padding-top: 15px;
        padding-bottom: 10px;
        text-align: center;
        background: rgb(224, 224, 224);
    }


    /* ================== PRIX ================== */

    .cadre-populaire {
        background: #c0bfbf;
        color: #333333;
        text-align: center;
        max-width: 300px;
        font-weight: bold;
        letter-spacing: 2px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -20px;
        padding: 10px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        position: relative;
    }

    .prix-inscrit {
        padding-top: 30px;
        padding-bottom: 20px;
        text-align: center;
    }

    .prix {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                    Roboto, "Helvetica Neue", Arial, sans-serif,
                    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

        font-size: 55px;
        font-weight: lighter;
        padding-bottom: 20px;
    }

    .prix-inscrit p {
        font-size: 16px;
        font-style: italic;
    }

    .zone40 {
        margin-top: 15px;
        color: #5c5c5c;
        padding-left: 40px;
        padding-right: 40px;
        line-height: 27px;
    }


    /* ================== ENCADRÉS ================== */

    .outline {
        border: .5px solid #ccc;
    }

    .outline-ligne {
        width: 100%;
        padding: 16px;
        margin: 0;
        background: rgb(235, 235, 235);
        box-sizing: border-box;
    }


    /* ================== CONDITIONS ================== */
    
    .hauteur-text{
        text-align:left; 
        padding-top:15px;
    }

    .container-condition {
        display: block;
        position: relative;
        padding-right: 50px;
        margin-top: 20px;
        margin-bottom: 10px;
        cursor: pointer;
        user-select: none;
    }

    .container-condition input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkmark-condition {
        position: absolute;
        top: 0;
        padding-right: 20px;
        height: 37px;
        width: 37px;
        background-color: #c9c7c7;
        border: solid 1px #6b6b6b;
    }

    .container-condition:hover input ~ .checkmark-condition {
        background-color: #ccc;
    }

    .container-condition input:checked ~ .checkmark-condition {
        background-color: #4971f5;
    }

    .checkmark-condition::before {
        content: "";
        position: absolute;
        display: none;
    }

    .container-condition input:checked ~ .checkmark-condition::before {
        display: block;
    }

    .container-condition .checkmark-condition::before {
        left: 12px;
        top: 1px;
        width: 11px;
        height: 28px;
        border: solid white;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

    .checkcondition {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .radio-group{
        width: 100%;
        max-width: 500px;
        box-sizing: border-box;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .radio-group label {
        padding-top: 10px;
        padding-bottom: 5px;
        padding-left: 25px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 20px;
        color: #777777;
    }

    .radio-group input[type="radio"] {
        transform: scale(1.5); /* 1.2 à 2 selon ton besoin */
        margin-right: 10px;
    }