main {
    padding: 8vh 10vw;
}

main > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
    padding: 8vh 10vw;
}

main > div > div {
    width: 30vw;
}

main form {
    display: flex;
    flex-direction: column;
    width: 25vw;
}

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

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

main label {
    font-size: larger;
}

main form a {
    font-size: small;
    color: var(--pink);
}
main form a:hover {
    color: var(--white);
}

@media only screen and (max-width: 992px) {
    main h2 {
        font-size: x-large;
    }

    main h3 {
        font-size: medium;
    }

    main > div {
        flex-direction: column;
    }

    main > div > div {
        width: 60vw;
    }

    main form {
        width: 60vw;
    }
}

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

.bg-custom-white {
    background-color: #faf5ef !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);
}

.main-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    gap: 2em;
}

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

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

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

.btn-connecter {
    background-color: #00394F;
    width: 100%;
    border-radius: 10px;
    color: white;
    border: none;
    padding: 0.5em;
    font-weight: bold;
}

.btn-connecter:disabled {
    background-color: grey;
    cursor: not-allowed;
}

.btn-connecter:hover {
    opacity: 80%;
}

.forgot-pswd {
    color: grey;
    font-size: small;
    text-align: right;
}

.forgot-pswd:hover {
    color: grey;
}

.titre-connecter {
    color: #18A2B8;
    font-family: inherit;
}