/* 
    Document   : style
    Created on : 28 avr. 2012, 15:49:59
    Author     : olivier
    Description:
        Purpose of the stylesheet follows.
*/



/*Formulaire
**********************************************************************/
form,
form .champs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:15px;
    max-width: 800px;
    margin:auto;
}

form input{
    flex:1 48%;
}

form select,
form textarea{
    flex:1 100%;
}

form .flex50{
    flex:1 48%;
}
form .flex30{
    flex:1 30%;
}

fieldset.formParent {
    position: relative;
    margin: 55px auto;
    width: 700px;
    padding: 5px 0px 10px 0px;
}

@media (max-width: 700px) {
    fieldset.formParent {
        width: 100%;
    }
    form input{
        flex: none;
        width: calc(100% - 15px);
    }
    form select.flex50{
        flex: none;
        width: calc(100% - 15px);
        margin: auto;
    }
    form .flex30{
        flex:none;
    }
}

fieldset.formParent > legend {
    max-width: 1200px;
    font-family: 'input-sans';
    transform: rotate(-6deg);
    display: inline-block;
    padding: 16px 17px 11px 17px;
    color: #175FB5;
    margin: 0px auto 30px auto;
    text-transform: uppercase;
    font-size: 25px;
    background-color: #FF9633;
    letter-spacing: -1.6px;
}

input,select,textarea{
    background-color:#E1ECF9;
    border:0px;
    padding: 0 15px;
    color: #175FB5; 
}
select{font-weight:700}
textarea{
    padding: 15px;
    line-height: 1.35em;
    height: 122px;
    font-family: 'Massilia', sans-serif !important;
    letter-spacing: 1px;
}
input[type="text"],input[type="date"],input[type="email"],select{height:44px}
input::placeholder,textarea::placeholder {
  color: #175FB5; 
  font-weight: bold; 
}
input[type="date"]{
    font-weight: bold;
    font-family: 'Massilia', sans-serif !important;
    font-size: 15px;}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #175FB5;
  font-weight: bold;
}


#cadreFormulaire{
    margin: auto;
    width: fit-content;
}

@media (max-width: 700px) {

    #cadreFormulaire{
        width: calc(100% - 15px);
    }

}


form .cgv-pass{
    display: flex;
    margin: 5px 0;
    align-items: center;
    gap: 0px;
    flex-direction: row;
    width: 100%;
}

form .cgv-pass input[type="checkbox"] {
    width: 20%;
    height: 30px;
    margin: 0px auto;
    flex-shrink: 1;
    flex-grow: 15;
}
form .cgv-pass label{
    font-weight: 200;
    font-size: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3px;
    width: 80%;}

form input[type="checkbox"]{
    flex:none;
    flex-shrink: 10;
}