@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f1f1f1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    overflow: hidden;
}

/* Estilo del contenedor principal */
.container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 50px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #009ba8;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

label {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 400;
    display: block;
}

/* Estilo del campo de entrada */
#documento {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid #009ba8;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin-bottom: 30px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

#documento:focus {
    border-color: #005f6b;
    background-color: #e9f7fa;
    box-shadow: 0 0 8px rgba(0, 155, 168, 0.6);
}

/* Estilo del mensaje */
#empleado-info {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    text-align: center;
}

#empleado-info.empty {
    color: #f44336; /* Rojo */
}

/* Botón de acción */
.glow-on-hover {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #009ba8;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    outline: none;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(0, 155, 168, 0.3);
}

.glow-on-hover:hover {
    background-color: #008c96;
    box-shadow: 0 0 25px rgba(0, 155, 168, 0.7);
}

/* Animaciones */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

h1, #empleado-info {
    animation: fadeIn 1s ease-out;
}

.titulo{
    font-size: 30px;
    font-weight: 600;
    color: #008c96;
}

#check{
    font-size: 25px;
    color: #00ab28;
}

#noEmp{
    font-size: 25px;
    color: #ca0025;
}

.hora_actual{
    font-size: 27px;
    margin: 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #009ba8, #007f8c);
    border-radius: 25px;
    padding: 3px;
}