body {
    font-family: "Manrope", sans-serif;
    margin:0;
    padding: 0;
}

.login .bg-login {

    h1, h2, h3, h4, h5, h6, .playfair {
        font-family: "Playfair Display", serif;
    }

    width: 100%;
    height: 100dvh;
    object-fit: cover;
    object-position: center;
}

.list-assistants {
    font-size: 0.9rem;
}

.mh-px {
    min-height: 60px;
}

.landing {
    min-height: 200px;
    background-image:
            linear-gradient(to bottom, transparent, rgba(0,0,0,0.8)),
            url("https://www.mercedes-benz.com/assets/vehicles/world-of-g-class/teaser/images/mercedes-benz-brandhub-g-hub-teaser-image-2560x1440-08-2024.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    @media (min-width: 768px) {
        min-height: 300px;
    }

    @media (min-width: 992px) {
        min-height: 350px;
    }
}

.title {
    text-shadow: 0 0 12px #000000;
}

/* Diet Form Choices (Yes/No) */
.diet-form-choices {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.diet-form-choices .form-check-inline {
    margin-right: 0;
}

/* Intolerance, Allergy, Preference Checkboxes Containers */
.intolerance-container,
.allergy-container,
.preference-container {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

.intolerance-checkboxes,
.allergy-checkboxes,
.preference-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.75rem;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check-input {
    margin-right: 0.5rem;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}