.easywms-logo {
    font-family: Orbitron,sans-serif!important;
    font-weight: 100!important;
}

.text-left {
    text-align: left;
}

h6 {
    margin-bottom: 15px;
}

.app-img {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 20px;

    img {
        width: 30%;
    }

}

@media (max-width: 768px) {
    .app-img {
        flex-direction: column;
        align-items: center;

        img {
            width: 70%;
        }

    }
}

/* Estilos para el captcha */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

#captcha-question {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    #captcha-question {
        font-size: 16px;
    }
}
