/* Style général de la page */
.bodyform {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
}

/* Conteneur principal */
form {
    width: 70%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Titres */
h1 {
    text-align: center;
    color: gold;
    margin-bottom: 30px;
    width: 70%;
}

/* Labels */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: center;
}

/* Champs de texte */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: justify;
}

/* Bouton d'envoi */
input[type="submit"] {
    display: block;
    margin: 0 auto;
    background-color: gold;
    color: black;
    padding: 12px 30px;
    border: 2px solid black;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: #FFD700;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Bouton d'envoi */
.buttonMenu {
    display: block;
    margin: 0 auto;
    background-color: gold;
    color: black;
    padding: 10px 30px;
    border: 2px solid black;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 20px;
}

.buttonMenu :hover {
    background-color: #FFD700;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Media queries pour le responsive */
@media screen and (max-width: 768px) {
    form {
        width: 90%;
    }
    
    h1 {
        width: 90%;
    }
    
    input[type="submit"] {
        width: 100%;
    }
}