  html,
        body {
            height: 100%;
            margin: 0;
        }

        body {
            background-image: url('../images/bg_justmarried.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        /* Overlay sombre */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            /* overlay noir semi-transparent */
            z-index: 0;
        }

        .form-wrapper {
            position: relative;
            z-index: 1;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 10em;
        }
.select-row {
    width: 100%;
}

.select-row .form-select {
    flex: 1;
    max-width: calc(100% - 100px);
}

.select-row .btn {
    width: 90px;
}
        .form-container {
            background: none;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            width: 100%;
            max-width: 600px;
            height: 68vh;
            overflow-y: auto;
            padding: 30px 30px 30px;
            /* padding top > hauteur titre */
            position: relative;
            /* Cacher scrollbar pour Chrome, Edge, Safari */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE 10+ */
        }

        .form-container::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        .form-title {
            width: 11em;
            position: fixed;
            top: 50px;
            left: 40%;
            transform: translateX(-50%);
            z-index: 2;
            text-align: center;
            font-size: 1.4em;
            color: #fff;
            /* background-color: rgba(0, 0, 0, 0.5); */
            padding: 10px 10px;
            border-radius: 10px;
        }

        .form-titles {
            width: 11em;
            position: fixed;
            top: 4em;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            text-align: center;
            font-size: 1.4em;
            color: #fff;
            /* background-color: rgba(0, 0, 0, 0.5); */
            padding: 10px 10px;
            border-radius: 10px;
        }

        @media screen and (max-width:768px) {
            .form-title {
                left: 34%;
                transform: translateX(-50%);
                z-index: 2;
                top: 45px;
            }

            .form-titles {
                left: 50%;
                transform: translateX(-50%);
                z-index: 2;
                top: 4em;
            }

            #lang-select {
                position: fixed;
                /* top: 0px!important; */
                left: 80% !important;
            }
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            line-height: 2.8 !important;
        }

        input[type="submit"] {
            background-color: #0077b6;
            color: white;
            font-weight: 500;
        }

        input[type="submit"]:hover {
            background-color: #023e8a;
        }

        input:focus,
        select:focus,
        textarea:focus {
            box-shadow: none !important;
            outline: none !important;
        }

        label {
            color: #fff !important;
        }

        .btn-primary {
            background-color: #27a382;
            border: none;
        }

        .text-muted {
            color: #fff !important;
        }

        /* Langue select position */
        #lang-select {
            position: fixed;
            top: 48px;
            left: 65%;
            transform: translateX(-50%);
            z-index: 2;
            text-align: center;
            /* font-size: 1.8rem; */
            /* color: #fff; */
            /* background-color: rgba(0, 0, 0, 0.5); */
            padding: 5px 10px;
            border-radius: 10px;
        }

        .custom-select-wrapper {
            position: relative;
            width: 200px;
            font-family: sans-serif;
        }

        .custom-select {
            position: relative;
            cursor: pointer;
            user-select: none;
        }

        .custom-select .selected {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #fff;
        }

        .custom-select .options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            display: none;
            border: 1px solid #ccc;
            border-radius: 6px;
            background-color: white;
            z-index: 10;
        }

        .custom-select .option {
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .custom-select .option:hover {
            background-color: #f0f0f0;
        }

        .custom-select img {
            width: 20px;
            height: auto;
            border-radius: 2px;
        }

        .d-grid {
            margin-top: 25px;
        }