/* standar */
body{
    background-color: #f2f2f2 !important;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #008252 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem #0082525d !important
}

label{
    font-weight: 600;
    color: #333;
}
a{
    color: #FF5F5E !important;
}
.btn-primary{
    background-color: #FF5F5E !important;
    border-color: unset !important;
    box-shadow: unset !important;
    color: #fff !important;
    border-radius: 30px !important;
    font-weight: 600 !important;

}
/* fin standar */


/* page de log-on */
#log-on{
    /* background-image: url(/static/images/fond-logon.jpg);
    background-repeat: no-repeat;
    background-size: cover; */
    position: relative;
    height: 100vh;
}
h1{
    color: #333;
}
h1>span:nth-child(1){
    color: #FF5F5E;
    
}
h1>span:nth-child(2){
    color: #008252;
    
}
h1>span:nth-child(3){
    display: block;
    color: #333;
    background-color: #FF5F5E;
    font-weight: 800;
}
#log-on h2::first-letter {
    color: #FF5F5E;
}
#log-on h2{
    text-decoration: underline #FF5F5E;
}
h2{
    color: #333;
}
.loginform{
    overflow: hidden;
    min-width: 350px;
    min-height: 250px;
    width: 50%;
    height: 50vh;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    display: flex;
    position: absolute;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 20px 20px 30px -10px rgb(76 75 75 / 27%), inset 15px 15px 10px rgba(255, 255, 255, 0.5), -15px -15px 35px rgba(255, 255, 255, 0.35);
    border-radius: 30px;
}

.loginform img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* fin de page log-on */


/* page offre */
.formulaireoffre{
    background: #ffffff;
    box-shadow: 20px 20px 30px -10px rgb(76 75 75 / 27%), inset 15px 15px 10px rgba(255, 255, 255, 0.5), -15px -15px 35px rgba(255, 255, 255, 0.35);
    border-radius: 30px;
}
.offre{
    background: #ffffff;
    box-shadow: 20px 20px 30px -10px rgb(76 75 75 / 27%), inset 15px 15px 10px rgba(255, 255, 255, 0.5), -15px -15px 35px rgba(255, 255, 255, 0.35);
    margin-bottom: 1em;
    margin-top: 1em;
    /* border: 1px solid #ced4da; */
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 30px;
    padding-top: 20px;
}
.offre>div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.5em;
}
.offre>div:nth-child(2){
    display: flex;
    flex-direction: row;
}
.offre .soustitre{
    font-size: 12px;
    color: #FF5F5E;
}
.titre{
    font-size: 20px;
    font-weight: 500;
    color: #333;
}
.titre-date,.titre-email{
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.published{
    display: block;
    position: relative;
    /* border-left:10px solid #008252 ; */
}
.published::before{
    position: absolute;
    display: block;
    height: 30px;
    width: auto;
    background: #008252;
    content: 'Publier';
    left: 0;
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}
.brouillon{
    display: block;
    position: relative;
    /* border-left:10px solid #FF5F5E ; */
}
.brouillon::before{
    position: absolute;
    display: block;
    height: 30px;
    width: auto;
    background: #FF5F5E;
    content: 'En cours de validation';
    left: 0;
    top: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}