body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background: #35424a;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button {
    background: #35424a;
    color: #d19dc6;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    box-shadow:0 8px 16px 0 rgba(0,0,0,0.6)
}

button:hover {
    background: #523e56;
}

button:active {
    background: #5e376d;
    box-shadow:0 0px 0px 0 rgba(0,0,0,0.6)
}

footer {
    text-align: center;
    padding: 20px;
    background: #35424a;
    color: #fff;
}

input[type="file"] {
    width: 100%;
    padding: 10px 0;
}

#fileName {
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

#truc_machin {
    display: none;
}


.button-container {
    display: flex;
    align-items: center;
}

.button-container span {
    margin-left: 20px; /* Adjust space between text and button */
}

.button-container button {
    padding: 10px 20px; /* Adjust button padding as needed */
}

/* Modal */


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #523e56;
}