/* css pou tout paj */
    :root{
        --red: #db1702;
        --blue: #0249AE;
        --darkblue: #00173D;
        --green: green;
        --yellow: #FDBD56;

        --greenbg : #75ebb3;
        --greentxt : #0c5532;

        --yellowbg : #f8d796;
        --yellowtxt : #b1790b;

        --redbg : #f8a6a0;
        --redtxt : #550c06;

        --bluebg : #a5cffd;
        --bluetxt : #035dbe;

        --graybg : #b0b0b0;
        --graytxt : #242424;

        --white: #ffffff;
        --light-white: #ffffff25;

        --black: #000000;
        --light-black: #00000050;

        --gray: rgb(102, 101, 101);
        --light-gray: #00000025;
        --light-gray2: #00000010;
        
        --box-shadow: 0 8px 16px rgba(0,0,0,.1);
    }

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        text-decoration: none;
        transition: all .2s linear;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-size: 16px;
        color: var(--black);
    }

    body{
        overflow-x: hidden;
        background: var(--white);
    }

    ::-webkit-scrollbar{
        width: 5px;
        height: 5px;
    }

    body::-webkit-scrollbar{
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-track{
        background-color: transparent;
    }

    ::-webkit-scrollbar-thumb{
        background-color: var(--light-gray);
        border-radius: 16px;
    }

    body::-webkit-scrollbar-thumb{
        background-color: var(--blue)
    }
/* css pou tout paj */

/* boutton */
    .flexBtn{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .btn{
        padding: 8px 16px;
        color: var(--white);
        text-wrap: nowrap;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        text-transform: capitalize;
        border: none;
    }

    .btn:hover{
        cursor: pointer;
        scale: 1.03;
    }

    .btn1{
        background: var(--blue)
    }

    .btn2{
        background: var(--yellow);
    }

    .btn3{
        background: var(--white);
        border: 1px solid var(--black);
        color: var(--black);
    }

    /* animation load */
        .btn-loader {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid var(--white);
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            vertical-align: middle;
            margin-right: 6px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    /* animation load */
/* boutton */

/* titre */
    .titre{    
        position: relative;
        left: 50%;
        transform: translatex(-50%);
        margin-bottom: 20px;
        text-align: center;
    }

    .titre .back_title{
        font-size: 45px;
        color: var(--blue);
        font-weight: 800;
        letter-spacing: 8px;
        opacity: .15;
        text-transform: uppercase;
    }

    .titre h2{    
        position: absolute;
        width: 100%;
        left: 50%; top: 50%;
        transform: translate(-50%,-50%);
        margin-top: 12px;
        font-size: 35px;          
        font-weight: 700;
        text-align: center;
        text-transform: capitalize;
    }

    .titre span{        
        font-size: 35px;          
        font-weight: 700;
        color: var(--yellow);
    }
/* titre */

/* section */
    section{
        width: 95%;
        padding: 8px 32px;
        margin: 32px auto;
    }

    .first_section{
        margin-top: 120px;
    }
/* section */

/* empty */
    .empty{
        width: 70%;
        margin: 0 auto;
        margin-bottom: 16px;
        border: var(--border);
        border-radius: 5px;
        padding: 8px;
        text-align: center;
        color: var(--black);
        box-shadow: var(--box-shadow);
    }
/* empty */

/* form */
    .form_universel{
        width: 80%;
        margin: 0 auto;
    }

    .form_universel fieldset{
        padding: 16px;
        border: 1px solid var(--light-gray);
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .form_universel fieldset legend{
        padding: .2rem 16px;
        color: var(--light-gray);
        border: 1px solid var(--light-gray);
        border-radius: 8px;
    }

    .form_universel{
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .input_container{
        position: relative;
    }

    .form_universel input, .form_universel textarea{
        width: 100%;
        padding: 12px;
        border: 1px solid var(--light-black);
        outline: none;
    }

    .form_universel textarea{
        height: 150px;
        resize: none;
    }

    .form_universel input:focus, .form_universel textarea:focus{
        border: 1px solid var(--blue);
    }

    .input_container label{
        position: absolute;
        top: 12px; left: 12px;
        color: var(--light-black);
        pointer-events: none;
        background: transparent;
        padding: 0 8px;
    }

    input:focus + label, 
    input:not(:placeholder-shown) + label,
    textarea:not(:placeholder-shown) + label,
    textarea:focus + label{
        top: -8px; left: 8px;
        font-size: 14px;
        color: var(--blue);
        background: var(--white);
    }

    .customfile{
        width: 100%;
        margin: .6rem 0;
        border-radius: .3rem;
        border: 1px solid var(--blue);
        font-size: 14px;
    }

    .customfile::-webkit-file-upload-button{
        width: 130px;
        padding: .6rem;
        color: var(--white);
        border: none;
        border-radius: .3rem;
        cursor: pointer;
        background-color: var(--blue);
        color: var(--white);
        font-size: 14px;
    }    
    
    .flex_champ{
        display: flex;
        justify-content: space-between;
        gap: 16px;
    }
    
    .flex_champ div{
        width: 100%;
    }

    /* forntend */
        .form_frontend input, .form_frontend textarea{
            background: var(--light-white);
            border: 1px solid var(--blue);
            border-radius: 8px;
        }

        .form_frontend label{
            color: var(--white);
        }

        .form_frontend input:focus + label, 
        .form_frontend input:not(:placeholder-shown) + label,
        .form_frontend textarea:not(:placeholder-shown) + label,
        .form_frontend textarea:focus + label{
            color: var(--white);
            background: var(--light-white);
            backdrop-filter: blur(10px);
            border: 1px solid var(--blue);
        }

        .form_frontend input:focus, .form_frontend textarea:focus{
            border: 1px solid var(--blue);
        }
    /* forntend */
/* form */

/* responsive */
    /* bouton */
        @media screen and (max-width: 650px) {
            .btn{
                padding: 7px 15px;
            }
        }

        @media screen and (max-width: 450px) {
            .btn{
                padding: 6px 14px;
                font-size: 15px;
            }
        }
    /* bouton */

    /* titre */
        @media screen and (max-width: 650px) {
            .titre .back_title{
                font-size: 35px;
            }

            .titre h2, .titre span, h2.titreBackend{
                font-size: 25px;
            }
        }

        @media screen and (max-width: 550px) {
            .titre .back_title{
                font-size: 30px;
                letter-spacing: 5px;
            }
        }
    /* titre */

    /* section */
        @media screen and (max-width: 650px) {
            section{
                padding: 8px 16px;
            }
        }

        @media screen and (max-width: 450px) {
            section{
                width: 95%;
                padding: 8px 10px;
            }
        }
    /* section */
    
    /* form */
        @media screen and (max-width: 800px) {
            .form_universel{
                width: 100%;
            }
        }

        @media screen and (max-width: 650px) {
            .flex_champ{
                flex-direction: column;
            }
        }

        @media screen and (max-width: 480px) {
            .form_universel input .customfile{
                font-size: 14px;
            }
        }
    /* form */
/* responsive */