@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Chivo:300,300i,400,400i,700,700i,900,900i');



/*MENU RESPONSIVE*/

*{margin: 0 0 0 0.1;
padding: 0} 

/*  menues del header */

nav{
    width: 60%;
    float: left;
}

nav ul li {
    list-style-type: none;
    line-height: 2rem;
    position: relative;
}

nav ul li ul{
    position: absolute;
    background-color: #0d71b9;
    transition: 1s all;
}
nav ul li a{
    text-decoration: none;
    color: black;
    padding: 0 2rem;
    display: block;
    transition: 1s all;
    color: white;
    font-family: 'Chivo', sans-serif;
}

nav ul li a:hover{
    background-color:#09426c;
}

nav ul#principal li:hover>ul {
    max-height: 500px;
    overflow: visible;
}

/*menu hamburguesa*/
nav ul#hamburguesa> li{
    background-color: #0d71b9;
    line-height: 0;
}
nav ul#hamburguesa li:hover>ul{
    max-height: 500px;
    overflow: visible;
}

/* menu principal*/
ul#principal{
    background-color: #0d71b9;
    display: flex;
    flex-direction: column
}
ul#principal li{
    border-bottom: 0.5px solid #ccc;
}
/* menu secundario */

ul#principal li ul{
    max-height: 0;
    overflow: hidden;
}
ul#principal li ul, ul#principal{
    max-height: 0;
    overflow: hidden;
}
ul#secundario {
    top:100%;
    left: 100%;
    z-index: 1;
}

/*FIN*/

body{
    background-color: #0d71b9;
}
body div img{
    width: 100%;
}
.volver img{
    width: 2rem;
    float: right;
    margin-top: 0.7rem
}
article h1{
    font-family: 'Chivo', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
}
article{
    margin-top: 15%;
}

.2{
    background-color: white;
}

form{
    display: block;
}

input{
    border: 0;
    border-bottom: 1px solid white;
    display: block;
    font-size: 12px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6px;
    padding-top: 10px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-family: 'Chivo', sans-serif;
}

.dni{
    margin-top: 3rem;
}
.ingresar .boton {
    
    cursor: pointer;
    display: flex;
    font-size: 12px;
    margin-top: 20px;
    padding: 6px 12px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5em;
    font-family: 'Chivo', sans-serif;
    text-decoration: none;
}

.usuario{
    font-family: 'Chivo', sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    font-weight: 200;
}
.usuario a{
    color: white;
}
.usuario a:hover{
    color: blue;
}
footer{
    font-family: 'Chivo', sans-serif;
    font-size: 0.8rem;
    margin-top: 2rem;
    text-align: center;
}

/*REPONSIVE*/

@media all and (min-width:40rem) {
    ul#hamburguesa> li img{
        display: none;
    }
    nav ul#principal{
        flex-direction: row;
        max-height: 800px;
        position: relative;
    }
    nav ul#secundario {
        top: 100%;
        left: 20%;
    }
    