#page-ouverture-compte-clients{
    max-width: 1500px;
    margin: auto;
    padding: 0 3%;
}

#page-ouverture-compte-clients h1{
    color: #09c;
    text-transform: uppercase;
    olor: #09c;
    font-weight: bold;
    margin: 2%;
    font-family: 'Roboto', sans-serif;
}

#page-ouverture-compte-clients h2{
    font-size: 22px;
    margin-bottom: 25px;
}

#page-ouverture-compte-clients h3{
    font-size: 16px;
    font-weight: bold;
}

.container-ouverture-compte-client{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.container-ouverture-compte-client #download{
    max-width: 550px;
    width: 80%;
}

#btn-ouverture-compte-client{
    color: #fff;
    padding: 5px 25px;
    background-color: #09c;
    width: auto;
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
    transition: background-color 0.5s, box-shadow 0.5s;
    font-size: 17px;
    border: none;
    border-radius: 5px;
}

#btn-ouverture-compte-client:hover{
    background-color: #0099ccdb;
    box-shadow: none;
}


@media screen and (max-width: 800px){

    .container-ouverture-compte-client {
        display: flex;
        flex-direction: column;
    }

}