

.page-contact-container {
    width: 70%;
    background-color: #EAEAEA;
  color: #395569;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    border-radius: 3px;
  
}


.texte-contact-container {
    width: 40%;
  
}

.texte-contact-container-title {
    font-size: 36px;
    font-weight: 800;
}

.texte-contact-container-info {
    font-size: 18px;
    margin: 2rem 0;
}

.texte-contact-container-number {
    border: 1px solid antiquewhite;
    width: fit-content;
    padding: 1rem;
    text-decoration: none;
   color: antiquewhite;
}



/* formulaire de contact mail  */

.formulaire-contact-container {
   width: 40%;
  
}

.form-text, .form-group {
    display: flex;
    flex-direction: column;
}

.label-form {
    font-size: 16px;
    margin-top: 1rem;
}

.form-text > button {
    margin: 1rem 0;
    height: 40px;
    background-color: #89C1BB;
    color: #395569;
    border: none;
    border-radius: 5px;
}

.form-text > button:hover {
    /* text-decoration: underline; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.form-control, .text-control {
    border-radius: 5px;
    /* border: none; */
}

.form-control {
    height: 30px;
}

.wpcf7-response-output {
    width: fit-content;
    font-size: 16px;
    margin: 2rem 0;
    padding: 0;
}


.square-button {
    background-color: #89C1BB;
    width: fit-content;
    height: 40px;
    color: #395569;
    display: flex;
    padding: 0.5rem; 
    border-radius: 5px;
   
    font-size: 18px;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s linear;
}

.square-button:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.05);
  
}

.square-button > img {
    height: 80%;
    margin-right: 10px;

}




@media (max-width: 821px) { 
    .page-contact-container {
        flex-direction: column;
        width: 77%;
        margin: 2rem 0;
       
       
    }

    .formulaire-contact-container, .texte-contact-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

     .texte-contact-container-title {
        font-size: 25px;
        
    }

    .texte-contact-container-info {
        font-size: 16px;
       
    }
}