*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{  
    font-family: "Nunito", sans-serif;
    background: rgb(217, 226, 236); 
}
h1{
    text-align: center;
    padding: 20px;
    font-size: 40px;
    color: rgb(56, 56, 56);
}
#fecha{
    text-align: center;
    color: rgb(148, 148, 148);
    font-weight: normal;
    font-size: 30px;
}
.container{
    width: 700px;
    background: white;
    padding: 20px;
    margin: auto;
    margin-top: 20px;
}
.acceso{
    color: rgb(0, 89, 255);
}
.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: blue;
    width: 100%;
    padding: 25px 35px;
    color: white;
    text-align: center;
    text-decoration: none;
}
.salida{
    background: red;
    width: 100%;
    padding: 25px 35px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.image-container {
    text-align: center; /* Centrar el contenedor */
    width: 100%; /* Asegurarse de que el contenedor tome el 100% del ancho */
    display: flex;
    justify-content: center; /* Centrar la imagen horizontalmente */
    margin-top: 20px; /* Separar la imagen del botón */
}

.image-container img {
    width: 50%; /* Establecer el ancho de la imagen al 50% del ancho del contenedor */
    height: auto; /* Mantener la proporción de la imagen */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

