/*Style pour les différents parties*/
.card, .progress {
    z-index: 1;
    margin: auto;
    width:50vw;
    text-align: center;
}
.card {
    display: block;
    background-color: floralwhite;
}

/*Style pour le fond d'écran*/
#containerImg {
    overflow: hidden; 
    z-index: -1;
    position: absolute;
    height: 100%;
}
.ball {
    position: absolute;
    z-index: -1;
    opacity: 0.7;
}

/*Barre de progression*/
.progress {
    margin-bottom: 4%;
}
.formPart {
    margin-bottom: 2em;
}

/*Contenu des formulaires*/
.card > img {
    height: auto; 
    width: auto; 
    min-width: 5vw; 
    min-height: 5vh;
}
input[type=image]{
    margin-left: 2em;
    margin-right: 2em;
}
.rating {
    padding: 1em;
    background-color: white;
    border-radius: 15px;
    margin: 1em;
    outline: 1px solid black;
    text-align: center;
}
.rating:hover {
    outline: 4px solid #3b8a32; /*À modifier*/
}
.selected {
    background-color: lightgrey;
    outline: 4px solid #3b8a32 !important; /*À modifier*/
}
textarea, input[type=text], input[type=email] {
    width: 95% !important;
    margin: auto;
}

/*Boutons du formulaire*/
#send, #next {
    float: right;
    margin-right: 1rem;
}
#prev {
    float: left;
    margin-left: 1rem;
}