header{
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
}
.connecter {
    width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 30px 10px 20px 10px;
    background-color: rgba(0, 0, 0, 0.918);
    border-radius: 10px;
}

.champs {
    display: block;
    margin-bottom: 35px;
}

.champs label {
    display: block;
    margin: 0 15px 5px -5px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
}

input {
    width: 600px;
    min-height: 30px;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    border: solid #c5c5c5;
}

.champs textarea {
    width: 600px;
    height: 150px;
    min-height: 150px;
    max-height: 400px;
    border-radius: 8px;
    font-size: 18px;
    text-align: left;
    border: solid #c5c5c5;
}

.btnEnvoyer {
    display: flex;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    padding: 5px 10px;
    padding-top: 10px;
    cursor: pointer;
    font-weight: bold;
    background-color: #0084ff;
}

.information {
    width: 650px;
    text-align: center;
    color: #000000;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    background-color: rgba(195, 0, 0, 0.544);
}

.information2 {
    width: 650px;
    text-align: center;
    color: #000000;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    background-color: rgba(0, 201, 0, 0.637);
}

.sameLine {
    flex-direction: row;
    align-items: baseline;
    margin-bottom: 20px;
}

.colorAppel{
    fill: #000000;
    background-color: #ffffff;
    position: unset;
    transition: all 0.3s ease
}

.colorAppel:hover{
    background-color: rgba(255, 255, 255, 0.842);
    fill: #000000;
    transition: all 0.3s ease
}

@media (max-width: 750px) {
    .connecter {
        width: 450px;
    }

    input {
        width: 400px;
    }

    .champs textarea {
        width: 400px;
    }

    .information {
        width: 450px;
    }

    .information2 {
        width: 450px;
    }
}

@media (max-width: 550px) {
    .connecter {
        width: 350px;
    }

    input {
        width: 300px;
        font-size: 15px;
    }

    .champs textarea {
        width: 300px;
        font-size: 15px;
    }

    .information {
        width: 350px;
    }

    .information2 {
        width: 350px;
    }
}