body {
    font-family: Arial, sans-serif;
    background-color: #000;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-image: url('contact.png'); /* Chemin de l'image de fond */
    background-size: cover; /* Ajuster la taille de l'image pour couvrir l'ensemble du corps */
    background-position: center; /* Centrer l'image de fond */
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    background-color: rgba(0, 0, 0, 0.8);
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: rgb(24, 59, 95);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
a{
    color: #fff;
    text-decoration: none;
}
button:hover {
    background-color: #0056b3;
}

#response {
    margin-top: 20px;
    font-weight: bold;
    color: #007BFF;
}
