* {
    margin: 0;
    box-sizing: border-box;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-image: url(/assets/images/fond.jpg);
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
}
#calque {
        width: 30vw;
            right: 20px;
            position: absolute;
            bottom: 20px;
}
header {
    height: 0vh;
    width: 100vw;
    padding: 2vh 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logo {
    margin: 20px;
    width: 50%;
}
header > img {
    height: 80%;
    max-width: 20%;
    object-fit: contain;
}

header nav .nav-button {
    padding: 0.95rem;
    font-size: 0.9rem;
    border-radius: 15px;
    background-color: white;
    color: #212b64;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: solid 2px white;
    margin-left: 1.5rem;
}

header nav .nav-button:hover {
    background-color: #212b64;
    color: white;
}

header nav .nav-link {
    margin: 0 1.5rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

header nav .nav-link:hover {
    opacity: 0.5;
}

header nav {
    display: flex;
    align-items: center;
}

main {
    margin: 0 auto;
    width: 80vw;
    height: 100vh;
    overflow-y: scroll;
    flex-direction: column;

}

/* width */
main::-webkit-scrollbar {
    width: 10px;
}

/* Track */
main::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
main::-webkit-scrollbar-thumb {
    background: rgba(50, 50, 50, 0.4);
    border-radius: 2000px;
}

/* Handle on hover */
main::-webkit-scrollbar-thumb:hover {
    background: #555;
}


main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    padding: 30px 45px;
    background-color: white;
    border-radius: 25px;
    width: 50%;
    text-align: center;
}

.login-box .login-title {
    color: #212b64;
    font-size: 1.5rem;
    font-weight: bold;
}

.login-box .login-field {
    margin-top: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.login-box .label {
    color: #212b64;
    margin-bottom: 0.8rem;
}

.login-box input {
    padding: 10px;
    border: none;
    font-size: 16px;
    width: 100%;
    border-radius: 30px;
    background-color: #CCC;
}

.login-box button {
    font-size: 1.4rem;
    background-color: #212b64;
    padding: 10px 20px;
    border-radius: 15px;
    border: solid 2px #212b64;
    color: white;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    font-weight: bold;
}
.login-box span {
    color: #212b64;
    cursor: pointer;
    margin: 0 auto;
}

.login-box a {
    font-size: 1.4rem;
    background-color: #212b64;
    padding: 10px 20px;
    border-radius: 15px;
    border: solid 2px #212b64;
    color: white;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
}
.login-box  .help  a {
    font-size: 1.4rem;
    margin: 0 auto;
    display: block;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    background-color: unset;
        padding: unset;
        border-radius: unset;
        border:  unset;
        color: unset;
}

.login-box button:hover {
    background-color: white;
    color: #212b64;
}

@media screen and (max-width: 500px){
    header {
        height: 0vh;
    }

    header nav {
        display: none;
    }

    .menuButton {
        display: block;
        margin-right: 3vw;
    }

    main {
        width: 95vw;
        padding: 0;
        height: 100vh;
    }

    .login-box {
        width: 90%;
        padding: 20px 30px;
    }
}