.error-color {
    color: var(--color-danger);
}

.success-color {
    color: var(--color-success);
}

.text-color-white {
    color: white;
}

.message {
    height: 1rem;
    font-size: 1rem;
}

html {
    height: auto;
    background-color: black;
}

body {
    max-width: 800px;
    margin: auto;
    height: 100%;
    font-family: var(--font-primary);
    background-color: black;

}  

.container {
    height: 100%;
    min-height: 100vh;
    width: 100%;
    /* background: 
        url("/public/Fond_web.png") no-repeat,
        url("/public/Fond_boucle_web.png") repeat;
    background-attachment: fixed;
    background-size: contain; */
    /* min-width: 350px; */
    /* background-position: top; */
    padding: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1080px;
}
#content {
    margin: auto;
    height: 100%;
    min-width: 55%;
    max-width: 700px;
    z-index: 1;
}

.img-buton {
    width: 100%; 
    height: 100%; 
}

.buton-image {
    height: 45px;
    position: relative;
    min-width: 250px;
}

.buton-image p {
    color: white;
    position: absolute;
    top: calc(50% - 0.7em); /* Calcule la moitié de la hauteur du bouton moins la moitié de la hauteur du texte */
    left: 50%;
    transform: translateX(-50%); /* Centrer horizontalement */
    margin: 0;
    width: fit-content;
}
.buton-image div {
    color: white;
    position: absolute;
    top: calc(50% - 0.7em); /* Calcule la moitié de la hauteur du bouton moins la moitié de la hauteur du texte */
    left: 50%;
    transform: translateX(-50%); /* Centrer horizontalement */
    margin: 0;
}


@media (min-width: 860px) {
    .container {
        /* background: url("/public/Fond_iPad.png") no-repeat,
        url("/public/Fond_boucle_ipad.png") repeat; */
        
        /* background-size: contain;
        background-attachment: fixed; */
        /* background-repeat:  round; */
        /* background-position: center top; */
        max-width: none;
    }

    body {
        max-width: none;
        font-size: 1.5rem;
    }

    #content {
        min-width: 50%;
        max-width: 75%;
        padding: 25px;
        max-width: 80%;
    }


}