body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.2);
}

.btn-menu, .btn-menu-item {
    background-color: #9e8921 !important;
}

.header {
    background-color: #000050;
    border-bottom: solid 5px #9e8921;
}

.logo {
    font-family: "Merriweather", serif;
    color: #9e8921;
    font-size: 2rem;
}

.logo a {
    color: #9e8921;
}

.header img {
    background-color: white;
    border-radius: 50%;
    left: 8%;
    position: absolute;
    width: 4.5rem;
    height: 4rem;
    border: 3px solid #9e8921;
    top: 1%;
}

main {
    flex: 1 0 auto;
    padding-top: 18%;
}

.formLogin {
    box-shadow: 0 9px 15px 6px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    background-color: white;
}

.formLogin h1 {
    color: white;
    font-size: 1.2rem;
    background-color: #9e8921;
    line-height: 3rem;
    text-align: center;
    margin: 0;
}

.form-section {
    background-color: white;
    margin: 6%;
}

.btn {
    background-color: #9e8921 !important;
}

.btn:hover {
    background-color: #000050 !important;
}

.footer {
    background-color: #000050;
    border-top: solid 5px #9e8921;
    color: #9e8921;
}

/*#################### Media queries ##########################*/

@media screen and (min-width: 40rem) {

    .formLogin {
        background-color: white;
        position: absolute;
        width: 30vw;
        left: 35%;
        top: 20%;
        margin: 0;
    }
}