main {
    padding: 8vh 10vw;
}

main > div {
    padding: 8vh 10vw;
}

main > div > div:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

main > div > div:not(:nth-child(1)) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* main form {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin: auto;
}

main form > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

main form > div > div {
    display: flex;
    flex-direction: column;
    width: 30vw;
}

main form input {
    margin: 1vh 0 4vh 0;
} */

main h3 {
    text-align: right;
    margin-top: 0;
}

main h4 {
    width: 100%;

    border-bottom: 3px solid var(--yellow);

    text-align: left;
}

/* main label {
    margin-left: 1vw;

    font-size: larger;
} */

#newsletter {
    flex-direction: row;
    align-items: center;

    font-size: x-small;
}

#danger-zone > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

@media only screen and (max-width: 992px) {
    /* main form {
        width: 75vw;

        margin-left: -3.8vh
    } */

    main > div > div {
        flex-direction: column;
        width: 75vw;

        margin-left: -3.8vh
    }
    
    main h2 {
        font-size: x-large;
    }

    /* main form > div > div {
        width: 60vw;
    } */
}

.bg-custom {
    background-color: #189db3 !important;
}



.btn:hover {
    filter: brightness(1.2);
}

.montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-color-custom {
    color: #F3D3ADFF
}

/* nouveau style laz50 */

body {
    background-color: #189db3 !important;
}

.bg-custom-white {
    background-color: white !important;
}

.main-container {
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding: 2em;
    box-shadow: 0px 0px 44.3px 28px rgba(0, 0, 0, 0.05);
}

.button-link {
    border: solid 1px #00394F;
    border-radius: 10px;
    padding: 0.2em 0.6em 0.2em 0.6em;
    display: flex;
    justify-content: space-between;
    gap: 0.5em;
    text-decoration: none !important;
    align-items: center;
    color: #00394F;
}

.inverse-color {
    background-color: #00394F;
    color: white;
}

.inverse-color:hover {
    background-color: #00293a;
    color: rgb(236, 236, 236);
}

h2 {
    font-family: inherit;
}

.input-label {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    text-align: left;
    width: 100%;
}

.input-label label {
    color: #00394F;
    font-weight: 500;
}

.input-label input {
    border-radius: 8px;
    border: solid 1px;
    padding: 0.6em;
}

.input-label-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
}

.input-label-inline label {
    color: #00394F;
    font-weight: 500;
    font-size: 0.9em;
    margin: 0;
}

label[for]:has(~ input[required])::after, .required::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

button[type="submit"]:disabled {
    opacity: 70%;
}
