/* ===== PÁGINA DE EMPLEADOS ===== */

/* Hero de empleados */
.empleados-hero {
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    padding: 60px 30px;
    text-align: center;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.empleados-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.empleados-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contenedor del login */
.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Lado izquierdo - Información */
.login-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-info h2 {
    font-size: 2.2rem;
    color: var(--verde-principal);
    margin-bottom: 20px;
}

.login-info h2 i {
    color: var(--amarillo);
    margin-right: 10px;
}

.login-info p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.beneficios-list {
    list-style: none;
    padding: 0;
}

.beneficios-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.beneficios-list li i {
    width: 30px;
    height: 30px;
    background: var(--verde-claro);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Lado derecho - Formulario */
.login-form {
    padding: 50px 40px;
    background: white;
}

.login-form h3 {
    font-size: 2rem;
    color: var(--verde-oscuro);
    margin-bottom: 30px;
    text-align: center;
}

.form-grupo {
    margin-bottom: 25px;
}

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--verde-oscuro);
    font-size: 1rem;
}

.form-grupo label i {
    color: var(--amarillo);
    margin-right: 8px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transicion);
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: var(--verde-principal);
    background: white;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
}

.form-input::placeholder {
    color: #aaa;
}

.password-olvidada {
    text-align: right;
    margin-top: 10px;
}

.password-olvidada a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transicion);
}

.password-olvidada a:hover {
    color: var(--verde-principal);
}

.btn-acceso {
    width: 100%;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-oscuro));
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transicion);
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-acceso:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
}

.ayuda-texto {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.ayuda-texto a {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: 600;
}

.ayuda-texto a:hover {
    text-decoration: underline;
}

/* Sección de información adicional */
.info-adicional {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-card {
    text-align: center;
    padding: 20px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde-claro), var(--verde-principal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.info-card h4 {
    color: var(--verde-oscuro);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .info-adicional {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .empleados-hero h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .empleados-hero p {
        font-size: 1.1rem;
    }
    
    .login-info,
    .login-form {
        padding: 40px 25px;
    }
    
    .info-adicional {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .login-info h2 {
        font-size: 1.8rem;
    }
}