
/**************************************

PAGE CANDIDATURE SPONTANEE

**************************************/
.entete_candidature{
    text-align: center;
}
.entete_candidature p{
    width: 80%;
    margin: auto;
    font-size: 1.2em;
    margin-bottom: 20px;
}
.entete_candidature h2{
    width: 80%;
    margin: auto;
    font-size: 1.5em;
    margin-bottom: 20px;
}
fieldset{
    border: 2px solid rgba(137, 28, 130, 1);
    border-radius: 10px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
}
form p{
    width: 85%;
    margin: auto;
    margin-bottom: 20px;
    text-align: justify;
}
legend{
    font-size: 1.2em;
    font-weight: bold;
}
.entete_services{
    height: 100%;
    margin-bottom: 10px;
}
input[type="text"], input[type="tel"], input[type="email"]{
    width: 100%;
    height: 40px;
    border-radius: 25px;
    border: 0;
    font-size: 1.3em;
}
.input_nom{
    background-color: white;
    background-image: url('images/nom.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
}
.input_telephone{
    background-color: white;
    background-image: url('images/telephone.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
}
.input_mail{
    background-color: white;
    background-image: url('images/mail.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
}
.input_etude{
    background-color: white;
    background-image: url('images/etude.png');
    background-repeat: no-repeat;
    background-position: left;
    padding-left: 30px;
}
input[type="text"]:hover, input[type="tel"]:hover, input[type="email"]:hover{
    background-color: rgb(198, 197, 197);
}
input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus{
    outline: none;
}
select{
    font-size: 1em;
    width: 450px;
    height: 30px;
    border-radius: 5px;
    border: 2px solid rgba(137, 28, 130, 1);
    padding-left: 10px;
}
label{
    font-size: 1.2em;
}
textarea{
    min-height : 100px;
    min-width : 95%;
    max-height : 200px;
}
textarea:focus{
    outline: none;
}
input[type="submit"]{
    padding: 15px;
    border-radius: 50px;
    background-color: rgba(137, 28, 130, 1);
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    border: 0;
    margin: 15px;
}
input[type="submit"]:hover{
    background-color:rgb(172, 170, 170);
    color: rgba(137, 28, 130, 1);
}
.bouton_candidature{
    text-align: center;
}

/**************************************/


/*md*/@media screen and (max-width: 768px){
    select{
        width: 350px;
    }
    .entete_candidature p{
        font-size: 1em;
    }
    .entete_candidature h2{
        font-size: 1.3em;
    }
    legend{
        font-size: 1em;
    }
    select{
        font-size: 0.8em;
    }
    label{
        font-size: 1em;
    }
    input[type="submit"]{
        font-size: 1em;
    }
    input[type="text"], input[type="tel"], input[type="email"]{
        font-size: 1.1em;
    }
}

/*sm*/@media screen and (max-width: 576px){
    select{
        width: 300px;
    }
    .entete_candidature p{
        font-size: 0.8em;
    }
    .entete_candidature h2{
        font-size: 1.1em;
    }
    legend{
        font-size: 0.8em;
    }
    select{
        font-size: 0.7em;
    }
    label{
        font-size: 0.8em;
    }
    input[type="submit"]{
        font-size: 0.8em;
    }
    input[type="text"], input[type="tel"], input[type="email"]{
        font-size: 0.9em;
    }
}