<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*=================================*/
/*          Mise en page           */
/*=================================*/

#contact {
    max-width: 450px;
    margin: 0px auto 0px auto;
    padding: 10px 30px 10px 30px;
    /*border-top: 1px solid #BABACA;
    border-left: 1px solid #BABACA;
    box-shadow: 1px 1px 1px 1px #C3C3D3;*/
    border: 1px solid #DFD9D9;
    box-shadow: 0px 0px 6px 2px #E3DDDD;
    border-radius: 8px 22px 8px 22px;
    /*border-top: 1px solid #AFAFEC;
    border-left: 1px solid #AFAFEC;
    box-shadow: 1px 1px 1px 1px #BABAD9;
    border-radius: 0px 10px 0px 10px;*/
    background-color: rgba(154, 187, 255, 0.1);
}

#contact p {
    margin: 0px;
    padding: 0px;
    border: 0px;
    text-indent: 0px;
}

.telephone_fixe {
    height: 10px;
    padding-left: 6px;
    padding-right: 4px;
}

.telephone_mobile {
    height: 10px;
    padding-left: 35px;
    padding-right: 4px;
}

/*=================================*/
/*           Formulaire            */
/*=================================*/

#contact {
    animation-name: contact;
    animation-duration: 1s;
    animation-timing-function: linear;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95)), url('../../images/fonds/fond_contact.jpg') no-repeat;
}

@keyframes contact {
  0% {
    transform:scale(0.02);
  }
  100%{
    transform:scale(1);
  }
}

#contact label {
    display: block;
    clear: left;
    float: left;
    height: 30px;
    margin-top: 5px;
    text-shadow: #7799BB 1px 1px 5px;
    color: #6688AA;
}

#contact input {
    clear: right;
    float: right;
    width: 65%;
    margin-bottom: 5px;
    padding: 5px 2px 5px 3px;
    border: 1px solid #C3C3C3;
    /*box-shadow: 0px 0px 1px 1px #AFAFEC;*/
    border-radius: 3px;
    background-color: rgba(100, 100, 100, 0.1);
}

#contact textarea {
    clear: left;
    float: left;
    height: 150px;
    width: 100%;
    margin-bottom: 5px;
    padding: 4px 4px 4px 4px;
    background-color: #FFFFFF;
    border: 1px solid #C3C3C3;
    /*box-shadow: 0px 0px 1px 1px #AFAFEC;*/
    border-radius: 3px;
    background-color: rgba(100, 100, 100, 0.1);
    overflow: auto;
}

#contact input:focus, #contact textarea:focus, #contact select:focus {
    outline: 3px solid #77AADD;
    background-color: rgba(180, 220, 240, 0.2);
}

#contact input[type=submit] {
    clear: left;
    height: 32px;
    width: 140px;
    margin: 10px auto 10px auto;
    box-shadow: 0px 0px 1px 1px #AFAFEC;
    border-radius: 4px;
    background-color: rgba(250, 250, 250, 0.5);
    color: #7799BB;
    font-weight: bold;
}

#contact input[type=submit]:hover {
    background: linear-gradient(to right, rgba(245, 205, 190, 0.3), rgba(215, 215, 235, 0.3));
    /*background: linear-gradient(to right, rgba(195, 195, 210, 0.3), rgba(215, 215, 225, 0.5));*/
    cursor: pointer;
    color: #CC7777;
}

#contact input[type=submit]:active {
    background: rgba(255, 165, 0, 0.5);
    color: #FFFFFF;
}

#contact .legende {
    clear: both;
    text-align: center;
    font-size: 0.7em;
    font-style: italic;
}</pre></body></html>