* {
    margin: 0;
    padding: 0;
    --paddingBt: 1%;
    --paddingSelect: 1%;
    --paddingRect: 10%;
    --colorBt: #2b2b2b;
    --colorTxt: #fff;
    --colorBorder: #fff;
    --border: solid 1px var(--colorBorder);
    --borderRadius: 10px;
}
html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    /* margin-top: 5%; */
}

.back {
    position: fixed;
}
.back a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    height: 100%;
    width: 100%;
    display: grid;
    place-items: center;
    margin: 5px;
    font-size: large;
}

.bin {
    font-size: 1.25em;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg,rgb(4, 65, 1) 40%, rgb(0, 0, 0) 100%);
    color: rgba(255,255,255,0.2);
    margin: 0 0;
    font-family: monospace;
    word-wrap: break-word;
    line-height: 0.8em;
    letter-spacing: 1px;
    overflow: hidden;
    position: fixed; /* Position absolue */
    top: 0; /* Aligné en haut */
    left: 50%; /* Aligné au centre horizontalement */
    transform: translateX(-50%); /* Ajuste le centrage horizontal */
    z-index: -1; /* Empile derrière la div.rect */
}

.rect{
    display: inline-block;
    text-align: center;
    margin-top: 15%;
    margin-left: 30%;
    padding: 5% 1% 5% 1%;
    width: 35%;
    border-radius: 15px;
    height: 25%;
    background-color: rgba(22, 22, 22, 0.397);
    color: #fff;
    z-index: 1;
}
.rectForm{
    display: inline-block;
    text-align: center;
    margin-top: 15%;
    margin-left: 12%;
    padding: 5% 1% 5% 1%;
    width: 75%;
    border-radius: 15px;
    height: 25%;
    background-color: rgba(22, 22, 22, 0.397);
    color: #fff;
    z-index: 1;
}
button{
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 0.5%;
    padding: var(--paddingBt);
    border-radius: var(--borderRadius);
    background: var(--colorBt);
    color: var(--colorTxt);
    border: var(--border);
    cursor: pointer;
}
select{
    font-size: 100%;
    font-family: Arial, Helvetica, sans-serif;

    padding: var(--paddingSelect);
    border-radius: var(--borderRadius);
    background: var(--colorBt);
    color: var(--colorTxt);
    border: var(--border);
    cursor: pointer;

}
label{
    font-size: 125%;
}
.labelDescr{
    color: #c5c5c5;
    background-color: rgba(255, 255, 255, 0.151);
    border-radius: 10px;
    padding: 0% 1% 0% 1%;
    /* margin-left: 0%; */
}
textarea{
    font-size: 125%;
}