* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.background-image {
    background: url('01.jpg') no-repeat center center/cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed; /* Fixe l'élément par rapport à la fenêtre du navigateur */
    bottom: 20px; /* Ajoute un peu d'espace par rapport au bas */
    right: 20px; /* Ajoute un peu d'espace par rapport à la droite */
}

.contact-form h1 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
    text-align: center; /* Centrage du titre */
}

.contact-form label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    resize: none;
}

.contact-form button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #FF0000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Media queries pour les petits écrans */
@media (max-width: 768px) {
    .contact-form {
        width: 90%; /* Adapte la largeur à l'écran */
        bottom: 10px; /* Réduit la marge en bas */
        right: 5%; /* Centrage léger à droite */
    }

    .contact-form h1 {
        font-size: 20px; /* Réduit la taille du titre */
    }

    .contact-form input, .contact-form textarea {
        font-size: 12px; /* Réduit la taille des champs */
    }

    .contact-form button {
        font-size: 14px; /* Réduit la taille du bouton */
    }
}

/* Media queries pour les très petits écrans (ex. smartphones en mode paysage) */
@media (max-width: 480px) {
    .contact-form {
        padding: 15px; /* Réduit les marges internes */
    }

    .contact-form h1 {
        font-size: 18px;
    }
}
