.retourContainer {
    display: flex;
    justify-content: flex-end;
    margin: 130px 100px 0 0;
    z-index: 1000;
    position: relative;
    top: 20px;
}

.retourDest {
    color: #333;
    text-decoration: none;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.retourDest:hover {
    background-color: #333;
    color: #fff;
}

.formContainer {
    position: fixed;
    bottom: 0;
    top: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    transition: all 0.3s ease-in-out;
    background-size: cover;
    background-position: bottom;
}

form { 
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

p, label, input {
    margin: 5px 0;
    font-size: 1rem;
    color: #333;
}

.champsObligatoires {
    align-self: flex-end;
    color: #333;
    font-size: 0.9rem;
}

.total, .recap {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.recap {
    font-weight: 700;
    text-transform: uppercase;
}

.reserve {
    border-radius: 10px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #333;
    color: #fff;
}

.reserve:hover {
    background-color: #555;
}

.increment, .decrement {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    margin: 5px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.increment:hover, .decrement:hover {
    background-color: #555;
}

@media(max-width:1024px) {
    .formContainer {
        top: 50px;
    }

    .retourContainer {
        margin-right: 30px;
        margin-top: 80px;
    }
}

@media(max-width:600px) {
    .recap, .total {
        font-size: 1rem;
    }

    .retourContainer {
        margin-right: 30px;
    }

    .retourDest {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    label, input {
        font-size: 0.8rem;
    }

    .champsObligatoires {
        font-size: 0.8rem;
        margin-left: 100px;
    }

    .increment, .decrement {
        font-size: 0.8rem;
        width: 20px;
        height: 20px;
    }

    .reservation {
        margin-top: 0;
    }
}
