body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
}

.wrapper__tasks {
    /*border: 1px solid red;*/
    max-width: 1024px;
    margin: 0 auto;
    padding: 50px 0;
}
#timer {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    color: white !important;
}
.task-description {
    font-size: 18px;
}

.subject {
    margin-bottom: 30px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.document h1{
    font-size: 17px;
    text-decoration: underline;
}
.document p{
    font-size: 18px;
}

.subject h2 {
    margin-top: 0;
}

.textarea {
    width: 100%;
    min-height: 350px;
    margin-top: 10px;
    padding: 25px;
    font-size: 18px;
    border: 1px solid #DDD;
    border-radius: 4px;
    resize: vertical;
}
.textarea::placeholder{
    font-style: italic;
    /*color: grey;*/
}

.word-counter {
    margin-top: 5px;
    font-style: italic;
    font-weight: 600;
}
.wrapper__button {
    width: 100%;
    display: flex;
    justify-content: end;
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 50px;
    gap: 40px;
}

.export-btn {
    padding: 8px 20px;
    font-size: 14px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
}

.export-btn:hover {
    background-color: #1abc9c;
    color: white;
}
.submit-ee__btn:hover {
    background-color: #00a2e8;
    color: white;
}

.wrapper__tasks .task h4 {
    text-transform: uppercase;
    font-size: 18px !important;
    margin-top: 35px;
}
.wrapper__redaction {
    padding: 0;
}
.submit-ee__btn {
    background: #1363DF;
}
.quote-container {
    display: block;
    border-left: 4px !important;
}


.input_phone {
    border: .125em solid #0073aa;
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
    height: 40px;
    font-weight: 500;
}
.input_phone::placeholder {
    font-style: italic;
    
}
.send_ee_btn {
    padding: 5px 20px;
    cursor: pointer;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    text-transform: capitalize;
    text-transform: uppercase;
    width: 300px;
    font-size: 14px;
    font-weight: 700;
}
.send_ee_btn:hover{
    color: white;
}
.wrapper__form__phone {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 8px 0;
}
.wrapper__infos {
    background-color: #f0f8ff;
    border-radius: 8px;
    padding: 25px;
    border: 0.15em solid #0073aa;
}
.instructions {
    display: block;
    font-style: italic;
}


#timer-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #061E43;
    text-align: center;
    padding: 15px 0;
    z-index: 1000;
}

#progress-bar {
    height: 7px;
    border-radius: 5px;
    background-color: #01a3a4; /* Couleur de la barre de progression */
    width: 100%; /* Largeur initiale */
    transition: width 1s linear; /* Animation fluide */
}

#timer::before {
    /*content: "Temps restant : ";*/
    font-weight: normal; /* Optionnel : style différent pour le texte */
    color: white !important; /* Optionnel : couleur différente pour le texte */
}
