/* ========================= */
/* ESTILOS GENERALES */
/* ========================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
}

/* ========================= */
/* LAYOUT */
/* ========================= */

.layout{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:250px;
    background:#161b22;
    color:white;
    padding:25px;
}

.sidebar h2{
    text-align:center;
    margin-bottom:40px;
    color:#ff008c;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:12px;
    margin-bottom:10px;
    border-radius:8px;
    transition:.3s;
}

.sidebar a:hover{
    background:#ff008c;
}

.contenido{
    flex:1;
    background:#f5f6fa;
    padding:30px;
}

/* ========================= */
/* PANTALLA MARCAR */
/* ========================= */

.contenedor {
    background: #1d1d1d;
    width: 420px;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 0 40px rgba(255,0,150,.35);
    color:white;
}

h1{
    color:#ff008c;
}

#reloj{
    font-size:42px;
    font-weight:bold;
    margin-bottom:25px;
}

.texto{
    margin-bottom:15px;
}

input{
    width:90%;
    padding:15px;
    font-size:28px;
    text-align:center;
    border-radius:10px;
    border:none;
    margin-bottom:20px;
}

button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#ff008c;
    color:white;
    font-size:18px;
    cursor:pointer;
}

button:hover{
    background:#d90078;
}

.ultima{
    margin-top:25px;
    padding:20px;
    background:#2a2a2a;
    border-radius:15px;
}

.mensaje{
    margin-top:20px;
    padding:15px;
    border-radius:10px;
    display:none;
}

.mensaje.exito{
    display:block;
    background:#00c853;
    color:white;
}

.mensaje.error{
    display:block;
    background:#d50000;
    color:white;
}

/* ========================= */
/* EMPLEADOS */
/* ========================= */

.btn-magenta{
    background:#ff008c;
    color:white;
    border:none;
}

.btn-magenta:hover{
    background:#d90078;
    color:white;
}

.avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#ff008c;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}.logo{

    width:170px;

    display:block;

    margin:auto;

    margin-bottom:25px;

}

.sidebar{

    width:250px;
    background:#161b22;
    color:white;
    padding:25px;
}.logo{
    width:170px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto 25px auto;
    object-fit:contain;
}