.contact-form-box {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    margin-top: -300px;
    transform: translateY(50%);
    animation: glissiere 2s forwards;
    animation-delay: 0.4s;
    z-index: 10;
}

@keyframes glissiere {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-form-box h2 {
    text-align: center;
    margin-bottom: 50px;
}

.contact-form-box label {
    display: block;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 15px;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    margin-bottom: 50px;
    background-color: #f1f2f7;
    width: 100%;
    max-width: 350px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    display: block;
    margin: 0 auto;
}

.contact-form-box select {
    appearance: none;
    text-align: center;
}

.button-contact {
    display: block;
    margin: 20px auto;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    background-color: rgb(24, 170, 255);
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.button-contact:hover {
    background-color: rgb(19, 125, 187);
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .contact-form-box {
        max-width: 80%;
        margin-bottom: 20px;
        margin-top: -50%;
    }
}
