body{
    background-color: #262626;
    color: #fff;
    font-family: "Montserrat", serif;
    display: flex;
    justify-content: center;
    margin-top: 10%;
    margin-bottom: 10%;
}

.close-button {
    position: fixed;
    top: 20px;
    right: 20px;
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
    color: white;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999;
  }
  
  .close-button:hover {
    color: #ccc;
  }
  
    
.contactez-nous {
    width: 700px;
    border: 1px solid;
    border-radius: 8px;
    padding: 0 50px 0 50px;
}
    
.contactez-nous h1 {
    margin-top: 5%;
    font-weight: 500;
}
    
form div {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 83px;
    margin-top: 25px;
}
    
form div label {
    margin-bottom: 7px;
    font-weight: 600;
}
    
form div input, form div select, form div textarea {
    background: #ffa927;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    font-family: Montserrat, "sans-serif";
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
}
    
form div input, form div select {
    height: 50px;
    padding-left: 10px;
}
    
form div select {
    appearance: none;
    background-size: 15px;
    background-position: right 10px top 50%;
    background-repeat: no-repeat;
}
    
form div textarea {
    height: 195px;
    padding: 15px 0px 0px 10px;
}
    

    
form div select option {
    background: white;
    color: #303030;
}
    
form div:last-child {
    align-items:center;
    margin-top: 20px;
}

.boutons_contenu{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center; 
    flex-wrap: wrap; 
}

.boutons_contenu a{
    border: 1px solid #fff; 
    padding: 10px 30px;
    transition: 0.5s;
    margin-right: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.boutons_contenu a:hover{
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 768px) {
    body {
        flex-direction: column;
        margin-top: 5%;
        margin-bottom: 5%;
        padding: 0 10px;
    }

    .contactez-nous {
        width: 100%;
        padding: 0 20px;
    }

    .contactez-nous h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    form div {
        margin-top: 20px;
    }

    form div input,
    form div select,
    form div textarea {
        font-size: 14px;
    }

    .boutons_contenu {
        flex-direction: column;
        gap: 10px;
    }

    .boutons_contenu a {
        width: 100%;
        text-align: center;
        margin: 0;
        font-size: 16px;
        padding: 10px;
    }

    .close-button {
        font-size: 24px;
        top: 10px;
        right: 10px;
    }
}
