input[type=text] , .containerFichier {
    padding: 10px;
    border: 1px solid gray;
    border-radius: 8px;
    width: 95%;
}
input[type=text]:hover{
    background-color: rgb(235, 255, 225);
}

input:focus {
    background-color: rgb(235, 255, 225);
}

input.captcha {
    width: 9em;
}


label:hover {
    cursor: pointer;
    color: gray;
}


.containerFichier {
    text-align: center;
}


input[type=file]:hover {
    cursor: pointer;
}

.message {
    color: green;
    font-weight: bold;
}

.informations ul {
    list-style-type: none;
}

.informations {
    margin: 2em;
    font-style: italic;
    text-align: justify;
}

input[type=submit] {
    margin-top: 3em;
    margin-left: 2em;
    padding-left: 4em;
    padding-right: 4em;
    padding-top: 1em;
    padding-bottom: 1em;
    border: 2px solid black;
    border-radius: 10px;
    font-weight: bold;
}

input[type=submit].enabled:hover {
    cursor: pointer;
    background-color: rgb(255,240,200);
}



.error {
    color: red;
}

.error::before {
    content: "Erreur : ";
    font-weight: bold;
}

.typeOffres {
    display: flex;
    justify-content: space-around;
    width: 95%;
}

.form-entry {
    margin-bottom: 1em;
}

/*
.radioContainer{
    cursor: pointer;
}
.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
    background-color: #000000;
}*/

#drop-area {
    border: 2px dashed #ccc;
    border-radius: 20px;
    width: 80%;
    max-width: 700px;
    font-family: sans-serif;
    margin: 25px auto;
    margin-bottom: 50px;
    padding: 20px;
}
#drop-area.is-dragover {
    border-color: red;
    background-color: yellow;
}

#confirmation_file {
    font-weight: bold;
}
.valid {
    color: green;
}
.warning {
    color: red;
}
#drop-area.drag_ok {
    border-color: darkgreen;
}
