* {
    padding: 0px;
    margin: 0px;
}

:root {
    --azul: #27187e;
    --naranja: rgb(233, 203, 34);
    --gris: #666666;
    --blanco: white;
    --negro: rgb(42, 42, 42);
}

@font-face {
    font-family: 'lemon';
    src: url('../fonts/lemonmilk-regular-webfont.woff2') format('woff2'),
        url('../fonts/lemonmilk-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'louis';
    src: url('../fonts/louis_george_cafe-webfont.woff2') format('woff2'),
        url('../fonts/louis_george_cafe-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



h1 {
    font-family: "Montserrat", sans-serif;

}

* {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

#logoNav {
    width: 60%;
}

body {
    margin-top: 150px;
    display: flex;
    justify-content: center;
}

#divFormulario {
    background-color: var(--negro);
    padding: 50px 30px;
    color: var(--blanco);
    width: 100%;
    border-radius: 15px;
}

form input {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    background-color: rgb(134, 134, 134);
    border-radius: 10px;
    padding: 5px;
}

form input::placeholder {
    color: white;
}

@media (min-width: 991.98px) {
    #opcionesMenu {
        display: flex;
        justify-content: end;
    }
    #logoNav {
        width: 80%;
    }
}
.nav-link{
    color: white;
}
@media (min-width: 768px) {

    #seccionLogin {
        margin: 20%;
    }
}

#btnLogin {
    padding: 10px 35px;
    margin-top: 10px;
}

form input:hover {
    background-color: white;
}

form input:focus {
    background-color: white;
}