*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Nunito", sans-serif;
    background: white;    
}

h1{
    text-align: center;
    padding: 20px;
    font-size: 30px;
    color: rgb(56,56,56);
}

a:hover{
    background: white;
    color: black;

}

.logo{
    text-align: center;
    width: 30%;
}

#fecha{
    text-align: center;
    color: rgb(148,148,148);
    font-weight: normal;
    font-size: 22px;
}

.container{
    width: 700px;
    background: white;
    padding: 20px;
    margin: auto;
    margin-top: 20px;
}

.cuadro{
    background: rgb(232,232,232);
}

.acceso{
    color: rgb(96,146,218);
}

.dni{
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}

input{
    width: 100%;
    padding: 30px;    
    outline: none;
}

.botones{
    display: flex;
    margin-top: 20px;
}

.entrada{
    background: rgb(96, 146, 218);
    width: 100%;
    padding: 25px 35px;
    margin-right: 5px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.salida{
    background: rgb(218, 96, 115);
    width: 100%;
    padding: 25px 35px;
    color: white;
    text-align: center;
    text-decoration: none;
}